Skip to content

Commit 3768b0b

Browse files
authored
fix: use consistent headline casing (#1529)
I used ¨Chicago Manual of Style" in https://headlinecapitalization.com/
1 parent 066dac5 commit 3768b0b

21 files changed

+21
-21
lines changed

book/3rdpartyprompts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# How to configure 3rd party prompts
1+
# How to Configure 3rd Party Prompts
22

33
## nerdfonts
44

book/advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# (Not So) Advanced
1+
# (Not so) Advanced
22

33
While the "Advanced" title might sound daunting and you might be tempted to skip this chapter, in fact, some of the most interesting and powerful features can be found here.
44

book/background_task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Background tasks with Nu
1+
# Background Tasks with Nu
22

33
Currently, Nushell doesn't have built-in background task management feature, but you can make it "support" background task with some tools, here are some examples:
44

book/cheat_sheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Nushell cheat sheet
1+
# Nushell Cheat Sheet
22

33
## Data types
44

book/command_signature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Command signature
1+
# Command Signature
22

33
nu commands can be given explicit signatures; take [`str stats`](/commands/docs/str_stats.md) as an example, the signature is like this:
44

book/creating_errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Creating your own errors
1+
# Creating Your Own Errors
22

33
Using the [metadata](metadata.md) information, you can create your own custom error messages. Error messages are built of multiple parts:
44

book/custom_commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Custom commands
1+
# Custom Commands
22

33
Nu's ability to compose long pipelines allows you a lot of control over your data and system, but it comes at the price of a lot of typing. Ideally, you'd be able to save your well-crafted pipelines to use again and again.
44

book/custom_completions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Custom completions
1+
# Custom Completions
22

33
Custom completions allow you to mix together two features of Nushell: custom commands and completions. With them, you're able to create commands that handle the completions for positional parameters and flag parameters. These custom completions work both for [custom commands](custom_commands.md) and [known external, or `extern`, commands](externs.md).
44

book/default_shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Default shell
1+
# Default Shell
22

33
## Setting Nu as default shell on your terminal
44

book/escaping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Escaping to the system
1+
# Escaping to the System
22

33
Nu provides a set of commands that you can use across different OSes ("internal" commands), and having this consistency is helpful. Sometimes, though, you want to run an external command that has the same name as an internal Nu command. To run the external [`ls`](/commands/docs/ls.md) or [`date`](/commands/docs/date.md) command, for example, you use the caret (^) command. Escaping with the caret prefix calls the command that's in the user's PATH (e.g. `/bin/ls` instead of Nu's internal [`ls`](/commands/docs/ls.md) command).
44

0 commit comments

Comments
 (0)