diff options
author | Oleksandr Redko <[email protected]> | 2023-05-22 20:11:12 +0300 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2023-06-19 09:26:29 +0200 |
commit | 9009c8cdca448e50704f7ecd1a3918c5919b0f37 (patch) | |
tree | 960aaa2b80a07c959360ad66fc79ebe7c0fa9632 /resources | |
parent | 12dc9a6e4acd5280a3e8b1658cbb96669fa97057 (diff) | |
download | hugo-9009c8cdca448e50704f7ecd1a3918c5919b0f37.tar.gz hugo-9009c8cdca448e50704f7ecd1a3918c5919b0f37.zip |
all: Fix typos in function names and comments
Diffstat (limited to 'resources')
-rw-r--r-- | resources/jsconfig/jsconfig.go | 2 | ||||
-rw-r--r-- | resources/resource_transformers/js/options.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/resources/jsconfig/jsconfig.go b/resources/jsconfig/jsconfig.go index 1fd6d6103..b6e867995 100644 --- a/resources/jsconfig/jsconfig.go +++ b/resources/jsconfig/jsconfig.go @@ -20,7 +20,7 @@ import ( ) // Builder builds a jsconfig.json file that, currently, is used only to assist -// intellinsense in editors. +// IntelliSense in editors. type Builder struct { sourceRootsMu sync.RWMutex sourceRoots map[string]bool diff --git a/resources/resource_transformers/js/options.go b/resources/resource_transformers/js/options.go index 1f57709cd..e9ffbabe4 100644 --- a/resources/resource_transformers/js/options.go +++ b/resources/resource_transformers/js/options.go @@ -239,7 +239,7 @@ func createBuildPlugins(c *Client, opts Options) ([]api.Plugin, error) { if m != nil { // Store the source root so we can create a jsconfig.json - // to help intellisense when the build is done. + // to help IntelliSense when the build is done. // This should be a small number of elements, and when // in server mode, we may get stale entries on renames etc., // but that shouldn't matter too much. |