Skip to content

Commit 343ee0a

Browse files
authored
Fix show_banner config item (#820)
the config option to disable banner is show_banner, not show-banner That does not leave a great impression when the first thing read in documentation is incorrect... Co-authored-by: Dominique Martinet <dominique.martinet@atmark-techno.com>
1 parent fcf0d7c commit 343ee0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

book/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ You can learn more about setting up colors and theming in the [associated chapte
6969

7070
## Remove Welcome Message
7171

72-
To remove the welcome message, you need to edit your `config.nu` by typing `config nu` in your terminal, then you go to the global configuration `let-env config` and set `show-banner` option to false, like this:
72+
To remove the welcome message, you need to edit your `config.nu` by typing `config nu` in your terminal, then you go to the global configuration `let-env config` and set `show_banner` option to false, like this:
7373

7474
@[code](@snippets/installation/remove_welcome_message.nu)
7575

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
let-env config = {
22
...
3-
show-banner: false,
3+
show_banner: false,
44
...
55
}

0 commit comments

Comments
 (0)