Skip to content

Commit

Permalink
fix(docs): correct syntax error in IDE integration examples
Browse files Browse the repository at this point in the history
  • Loading branch information
EricGusmao committed Dec 5, 2024
1 parent d9158ac commit d9094c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/ide-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Here is an example using VSCode:
# ~/.zprofile
if [[ "$TERM_PROGRAM" == "vscode" ]]; then
eval "$($HOME/.local/bin/mise activate zsh --shims)"
elif; then
else
eval "$($HOME/.local/bin/mise activate zsh)"
fi
```
Expand All @@ -61,7 +61,7 @@ fi
# ~/.bash_profile or ~/.bash_login or ~/.profile
if [[ "$TERM_PROGRAM" == "vscode" ]]; then
eval "$($HOME/.local/bin/mise activate bash --shims)"
elif; then
else
eval "$($HOME/.local/bin/mise activate bash)"
fi
```
Expand Down

0 comments on commit d9094c1

Please sign in to comment.