Skip to content

Commit 41f99b4

Browse files
committed
Simplify sentences by dropping 'simply'
Increases readability and clarity. Using 'simply' can indicate that actions are simple. But adding it without a need for differentiation or qualification, they increase sentence complexity, making it harder to read and parse. The statements remain just as valid without them.
1 parent f790b3f commit 41f99b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

book/modules/using_modules.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The example above uses the [Standard Library](../standard_library.md), a collect
2525

2626
## Installing Modules
2727

28-
Installing a module is simply a matter of placing its files in a directory. This might be done via `git clone` (or other version control system), a package manager such as `nupm`, or manually. The module's documentation should provide recommendations.
28+
Installing a module is a matter of placing its files in a directory. This might be done via `git clone` (or other version control system), a package manager such as `nupm`, or manually. The module's documentation should provide recommendations.
2929

3030
## Importing Modules
3131

@@ -217,11 +217,11 @@ assert true
217217
```
218218

219219
::: tip
220-
`main` is covered in more detail in [Creating Modules](./creating_modules.md#main-exports), but for end-users, `main` simply means "the command named the same as the module." In this case the `assert` module exports a `main` command that "masquerades" as the `assert` command. Hiding `main` has the effect of hiding the `assert` command, but not its subcommands.
220+
`main` is covered in more detail in [Creating Modules](./creating_modules.md#main-exports), but for end-users, `main` means "the command named the same as the module." In this case the `assert` module exports a `main` command that "masquerades" as the `assert` command. Hiding `main` has the effect of hiding the `assert` command, but not its subcommands.
221221
:::
222222

223223
## See Also
224224

225-
- To make a module always be available without having to `use` it in each Nushell session, simply add its import (`use`) to your startup configuration. See the [Configuration](../configuration.md) Chapter to learn how.
225+
- To make a module always be available without having to `use` it in each Nushell session, add its import (`use`) to your startup configuration. See the [Configuration](../configuration.md) Chapter to learn how.
226226

227227
- Modules can also be used as part of an [Overlay](../overlays.md).

0 commit comments

Comments
 (0)