Skip to content

Commit aa4cd06

Browse files
committed
Fix accidental creation of a table in the text due to unquoted vertical bar
1 parent 26961f4 commit aa4cd06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2025-09-21-typename-syntax-and-resolution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ For a variety of reasons, I decided to use the syntax of fully-qualified type na
5555

5656
A non-trivial problem with that choice; the syntax uses characters such as backquotes, commas and square brackets that are not valid in Clojure symbols. So I had to come up with a way to write a symbol using characters that the Lisp reader would not normally accept. (Any alternative syntax likely would have had the same problem.)
5757

58-
Other Lisps have solutions to this problem. I decided to use a simplified version of the symbol syntax used in CommonLisp. This is the |-escaping used by the Clojure Lisp reader. Read about it in [Reader extension: |-quoting](https://github.com/clojure/clojure-clr/wiki/Reader-extension:-%7C%E2%80%90quoting).
58+
Other Lisps have solutions to this problem. I decided to use a simplified version of the symbol syntax used in CommonLisp. This is the `|`-quotiing used by the Clojure Lisp reader. Read about it in [Reader extension: `|`-quoting](https://github.com/clojure/clojure-clr/wiki/Reader-extension:-%7C%E2%80%90quoting).
5959

6060
Thus we end up with the aforementioned
6161

0 commit comments

Comments
 (0)