summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/allconfig/allconfig.go4
-rw-r--r--config/commonConfig.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/config/allconfig/allconfig.go b/config/allconfig/allconfig.go
index ec7895eea..9079e2ce3 100644
--- a/config/allconfig/allconfig.go
+++ b/config/allconfig/allconfig.go
@@ -424,10 +424,10 @@ type RootConfig struct {
// Copyright information.
Copyright string
- // The language to apply to content without any Clolanguage indicator.
+ // The language to apply to content without any language indicator.
DefaultContentLanguage string
- // By defefault, we put the default content language in the root and the others below their language ID, e.g. /no/.
+ // By default, we put the default content language in the root and the others below their language ID, e.g. /no/.
// Set this to true to put all languages below their language ID.
DefaultContentLanguageInSubdir bool
diff --git a/config/commonConfig.go b/config/commonConfig.go
index ac1dd39fa..09f81c1ba 100644
--- a/config/commonConfig.go
+++ b/config/commonConfig.go
@@ -97,7 +97,7 @@ var defaultBuild = BuildConfig{
Source: `(postcss|tailwind)\.config\.js`,
Target: cssTargetCachebusterRe,
},
- // This is deliberatly coarse grained; it will cache bust resources with "json" in the cache key when js files changes, which is good.
+ // This is deliberately coarse grained; it will cache bust resources with "json" in the cache key when js files changes, which is good.
{
Source: `assets/.*\.(.*)$`,
Target: `$1`,
@@ -113,7 +113,7 @@ type BuildConfig struct {
// related aggregated data (e.g. CSS class names).
WriteStats bool
- // Can be used to toggle off writing of the intellinsense /assets/jsconfig.js
+ // Can be used to toggle off writing of the IntelliSense /assets/jsconfig.js
// file.
NoJSConfigInAssets bool