Skip to content

Commit

Permalink
Fix typo in Nushell activation script (#2754)
Browse files Browse the repository at this point in the history
  • Loading branch information
edmorley authored Sep 1, 2024
1 parent 95c5eed commit 265011a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/virtualenv/activation/nushell/activate.nu
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export-env {
} | all {|i| $i == true}
}

# Emulates a `test -z`, but btter as it handles e.g 'false'
# Emulates a `test -z`, but better as it handles e.g 'false'
def is-env-true [name: string] {
if (has-env $name) {
# Try to parse 'true', '0', '1', and fail if not convertible
Expand Down

0 comments on commit 265011a

Please sign in to comment.