summaryrefslogtreecommitdiff
path: root/doc/misc/cl.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/misc/cl.texi')
-rw-r--r--doc/misc/cl.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index 75a83602fa3..5af41a4465e 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -1491,7 +1491,7 @@ for a description of type specifiers. For example,
(cl-typecase x
(integer (munch-integer x))
(float (munch-float x))
- (string (munch-integer (string-to-int x)))
+ (string (munch-integer (string-to-number x)))
(t (munch-anything x)))
@end example