diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-05-12 19:22:36 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-05-12 19:22:36 -0700 |
commit | 9f0f3544342ed8becc97e4ea8b63d9eb792f5211 (patch) | |
tree | 3c7657b9e02e3d7861279e155f0ad82fde564b36 /stdlib | |
parent | 72485dabcf57c73bcedf1acfc6a086f6228591c3 (diff) | |
download | txr-9f0f3544342ed8becc97e4ea8b63d9eb792f5211.tar.gz txr-9f0f3544342ed8becc97e4ea8b63d9eb792f5211.tar.bz2 txr-9f0f3544342ed8becc97e4ea8b63d9eb792f5211.zip |
compiler: spelling error in diagnostic.
* stdlib/compiler.tl (with-compile-opts): Remove stray
character from "uncrecognized".
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/compiler.tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/compiler.tl b/stdlib/compiler.tl index 560991be..cdbd3a3f 100644 --- a/stdlib/compiler.tl +++ b/stdlib/compiler.tl @@ -2583,4 +2583,4 @@ (compile-error form "~s isn't a recognized warning option" s))) ^(set ,*(mappend (ret ^((qref ,co ,@1) ,op)) syms))) (@(or @(atom) (@(not @(keywordp)) . @nil)) cl) - (@nil (compile-error form "uncrecognized clause syntax: ~s" cl))))))) + (@nil (compile-error form "unrecognized clause syntax: ~s" cl))))))) |