Skip to content

Commit

Permalink
fix: use consistent headline casing
Browse files Browse the repository at this point in the history
I used  ¨Chicago Manual of Style" in https://headlinecapitalization.com/
  • Loading branch information
Hofer-Julian committed Aug 29, 2024
1 parent 066dac5 commit 81397d2
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion book/3rdpartyprompts.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# How to configure 3rd party prompts
# How to Configure 3rd Party Prompts

## nerdfonts

Expand Down
2 changes: 1 addition & 1 deletion book/advanced.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (Not So) Advanced
# (Not so) Advanced

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.

Expand Down
2 changes: 1 addition & 1 deletion book/background_task.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Background tasks with Nu
# Background Tasks with Nu

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:

Expand Down
2 changes: 1 addition & 1 deletion book/cheat_sheet.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Nushell cheat sheet
# Nushell Cheat Sheet

## Data types

Expand Down
2 changes: 1 addition & 1 deletion book/command_signature.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Command signature
# Command Signature

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

Expand Down
2 changes: 1 addition & 1 deletion book/creating_errors.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Creating your own errors
# Creating Your Own Errors

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

Expand Down
2 changes: 1 addition & 1 deletion book/custom_commands.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Custom commands
# Custom Commands

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.

Expand Down
2 changes: 1 addition & 1 deletion book/custom_completions.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Custom completions
# Custom Completions

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).

Expand Down
2 changes: 1 addition & 1 deletion book/default_shell.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Default shell
# Default Shell

## Setting Nu as default shell on your terminal

Expand Down
2 changes: 1 addition & 1 deletion book/escaping.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Escaping to the system
# Escaping to the System

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).

Expand Down
2 changes: 1 addition & 1 deletion book/line_editor.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Reedline, Nu's line editor
# Reedline, Nu's Line Editor

Nushell's line editor [Reedline](https://github.com/nushell/reedline) is a
cross-platform line reader designed to be modular and flexible. The engine is
Expand Down
2 changes: 1 addition & 1 deletion book/loading_data.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Loading data
# Loading Data

Earlier, we saw how you can use commands like [`ls`](/commands/docs/ls.md), [`ps`](/commands/docs/ps.md), [`date`](/commands/docs/date.md), and [`sys`](/commands/docs/sys.md) to load information about your files, processes, time of date, and the system itself. Each command gives us a table of information that we can explore. There are other ways we can load in a table of data to work with.

Expand Down
2 changes: 1 addition & 1 deletion book/moving_around.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Moving around the system
# Moving around the System

A defining characteristic of a shell is the ability to navigate and interact with the filesystem. Nushell is, of course, no exception. Here are some common commands you might use when interacting with the filesystem:

Expand Down
2 changes: 1 addition & 1 deletion book/nushell_map_functional.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Nu map from functional languages
# Nu Map from Functional Languages

The idea behind this table is to help you understand how Nu builtins and plugins relate to functional languages. We've tried to produce a map of relevant Nu commands and what their equivalents are in other languages. Contributions are welcome.

Expand Down
2 changes: 1 addition & 1 deletion book/nushell_map_imperative.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Nu map from imperative languages
# Nu Map from Imperative Languages

The idea behind this table is to help you understand how Nu built-ins and plugins relate to imperative languages. We've tried to produce a map of programming-relevant Nu commands and what their equivalents are in other languages. Contributions are welcome.

Expand Down
2 changes: 1 addition & 1 deletion book/regular_expressions.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Regular expressions
# Regular Expressions

Regular expressions in Nushell's commands are handled by the `rust-lang/regex` crate. If you want to know more, check the crate documentation: "[regex](https://github.com/rust-lang/regex)".
2 changes: 1 addition & 1 deletion book/shells_in_shells.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Shells in shells
# Shells in Shells

## Working in multiple directories

Expand Down
2 changes: 1 addition & 1 deletion book/style_guide.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Best practices
# Best Practices

This page is a working document collecting syntax guidelines and best practices we have discovered so far.
The goal of this document is to eventually land on a canonical Nushell code style, but as for now it is still work in
Expand Down
2 changes: 1 addition & 1 deletion book/working_with_lists.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Working with lists
# Working with Lists

:::tip
Lists are equivalent to the individual columns of tables. You can think of a list as essentially being a "one-column table" (with no column name). Thus, any command which operates on a column _also_ operates on a list. For instance, [`where`](/commands/docs/where.md) can be used with lists:
Expand Down
2 changes: 1 addition & 1 deletion book/working_with_strings.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Working with strings
# Working with Strings

As with most languages, strings are a collection of 0 or more characters that represent text. This can include file names, file paths, names of columns,
and much more. Strings are so common that Nushell offers multiple string formats to match your use-case:
Expand Down
2 changes: 1 addition & 1 deletion book/working_with_tables.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Working with tables
# Working with Tables

One of the common ways of seeing data in Nu is through a table. Nu comes with a number of commands for working with tables to make it convenient to find what you're looking for, and for narrowing down the data to just what you need.

Expand Down

0 comments on commit 81397d2

Please sign in to comment.