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 | 2ba8c2cebf4645bb6c9f50fc6804ed209b320f58 (patch) | |
tree | 3c7657b9e02e3d7861279e155f0ad82fde564b36 /stdlib/compiler.tl | |
parent | ad9fb6b442d71863476befa9c43974640cb5435b (diff) | |
download | txr-2ba8c2cebf4645bb6c9f50fc6804ed209b320f58.tar.gz txr-2ba8c2cebf4645bb6c9f50fc6804ed209b320f58.tar.bz2 txr-2ba8c2cebf4645bb6c9f50fc6804ed209b320f58.zip |
compiler: spelling error in diagnostic.
* stdlib/compiler.tl (with-compile-opts): Remove stray
character from "uncrecognized".
Diffstat (limited to 'stdlib/compiler.tl')
-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))))))) |