Skip to content

Commit e371c71

Browse files
authored
Fix Shadowlisp example
I believe the variable name was incorrect in this example
1 parent d612b6a commit e371c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/shadowlisp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ snippet that uses more features than most code will have to:
3333
(env/remove-from-pathlist "PATH" (path-concat rroot "bin"))
3434
(when-let ((groot (env/get "GEM_ROOT")))
3535
(env/remove-from-pathlist "PATH" (path-concat groot "bin"))
36-
(env/remove-from-pathlist "GEM_PATH" gem-root))
36+
(env/remove-from-pathlist "GEM_PATH" groot))
3737
(when-let ((ghome (env/get "GEM_HOME")))
3838
(env/remove-from-pathlist "PATH" (path-concat ghome "bin"))
3939
(env/remove-from-pathlist "GEM_PATH" ghome)))

0 commit comments

Comments
 (0)