Skip to content

Commit e5de007

Browse files
committed
Revert "Remain consistent across code examples"
This reverts commit eec9199.
1 parent 1abe662 commit e5de007

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
@@ -207,7 +207,7 @@ assert true
207207
# => Assertion passes
208208
209209
hide assert
210-
assert equal 1 2
210+
assert equal 1 1
211211
# => Error:
212212
# => help: A command with that name exists in module `assert`. Try importing it with `use`
213213
@@ -222,7 +222,7 @@ Just as you can `use` a subset of the module's definitions, you can also `hide`
222222
```nu
223223
use std/assert
224224
hide assert main
225-
assert equal 1 2
225+
assert equal 1 1
226226
# => assertion passes
227227
228228
assert true

0 commit comments

Comments
 (0)