Skip to content

Commit 9068c24

Browse files
committed
Partially revert "Simplify sentences by dropping 'simply'"
This partially reverts commit 41f99b4.
1 parent e5de007 commit 9068c24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/modules/using_modules.md

Lines changed: 2 additions & 2 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 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 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.
2929

3030
## Importing Modules
3131

@@ -231,7 +231,7 @@ assert true
231231
```
232232

233233
::: tip
234-
`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.
234+
`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.
235235
:::
236236

237237
## See Also

0 commit comments

Comments
 (0)