Skip to content

Commit

Permalink
Improve eval expression in README.md (#204)
Browse files Browse the repository at this point in the history
The $(command) expression is preferred instead of backticks.
c.f https://google.github.io/styleguide/shellguide.html#command-substitution
  • Loading branch information
loliee authored Mar 20, 2020
1 parent b7ed348 commit 389ab46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ curl -fsSL https://github.com/Schniz/fnm/raw/master/.ci/install.sh | bash -s --
- Add the following line to your `.bashrc`/`.zshrc` file:

```bash
eval "`fnm env --multi`"
eval "$(fnm env --multi)"
```

If you are using [fish shell](https://fishshell.com/), add this line to your `config.fish` file:
Expand Down

0 comments on commit 389ab46

Please sign in to comment.