diff options
author | Bjørn Erik Pedersen <[email protected]> | 2019-07-24 21:46:24 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2019-07-24 21:46:24 +0200 |
commit | 882d678bbf2a149a90e2aed4341d7f6fc2cb394d (patch) | |
tree | 375f632136c357190d27fa2f6172f53dc04ab0c7 /modules/config.go | |
parent | fa28df1058e0131364cea2e3ac7f80e934d024a1 (diff) | |
download | hugo-882d678bbf2a149a90e2aed4341d7f6fc2cb394d.tar.gz hugo-882d678bbf2a149a90e2aed4341d7f6fc2cb394d.zip |
modules: Rename disabled => disable in config
Diffstat (limited to 'modules/config.go')
-rw-r--r-- | modules/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/config.go b/modules/config.go index b084863d4..818241c94 100644 --- a/modules/config.go +++ b/modules/config.go @@ -301,7 +301,7 @@ func (v HugoVersion) IsValid() bool { type Import struct { Path string // Module path IgnoreConfig bool // Ignore any config.toml found. - Disabled bool // Turn off this module. + Disable bool // Turn off this module. Mounts []Mount } |