From f5ee5e5a6bc20a749e42ef975aac02d1192d0d1c Mon Sep 17 00:00:00 2001 From: sakurawald Date: Sun, 10 Nov 2024 11:31:33 +0800 Subject: [PATCH] fix: use the dir placeholder for source of impl --- content/en/usage/common_lisp.md | 2 +- content/zh-TW/usage/common_lisp.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/usage/common_lisp.md b/content/en/usage/common_lisp.md index bf98445..2c514b2 100644 --- a/content/en/usage/common_lisp.md +++ b/content/en/usage/common_lisp.md @@ -124,7 +124,7 @@ all known symbols of the current Lisp image*, and it brings you to this symbol's definition. > If you can't find the definition of built-in symbols provided by your implementation, and get the `directory does not exists: ...` error, then you may need to specify the `source directory` of your implementation. -> For example, if you are using `roswell` to start your `lisp repl`, you can create the `~/.roswell/init.lisp`, and add `(sb-ext:set-sbcl-source-location "/usr/share/sbcl-source/")` to specify the source direcoty. (Taken `sbcl` implementation for example.) +> For example, if you are using `roswell` to start your `lisp repl`, you can create the `~/.roswell/init.lisp`, and add `(sb-ext:set-sbcl-source-location "/path/to/your/source-of-implementation/")` to specify the source direcoty. (Taken `sbcl` implementation for example.) "All symbols" really means all the symbols of any package that was loaded in the image. This includes the implementation and Lem's diff --git a/content/zh-TW/usage/common_lisp.md b/content/zh-TW/usage/common_lisp.md index f079aad..6588b5c 100644 --- a/content/zh-TW/usage/common_lisp.md +++ b/content/zh-TW/usage/common_lisp.md @@ -100,7 +100,7 @@ all known symbols of the current Lisp image*, and it brings you to this symbol's definition. > If you can't find the definition of built-in symbols provided by your implementation, and get the `directory does not exists: ...` error, then you may need to specify the `source directory` of your implementation. -> For example, if you are using `roswell` to start your `lisp repl`, you can create the `~/.roswell/init.lisp`, and add `(sb-ext:set-sbcl-source-location "/usr/share/sbcl-source/")` to specify the source direcoty. (Taken `sbcl` implementation for example.) +> For example, if you are using `roswell` to start your `lisp repl`, you can create the `~/.roswell/init.lisp`, and add `(sb-ext:set-sbcl-source-location "/path/to/your/source-of-implementation/")` to specify the source direcoty. (Taken `sbcl` implementation for example.) "All symbols" really means all the symbols of any package that was loaded in the image. This includes the implementation and Lem's