Fix example code in "Type and range checking".
authorMatt Birkholz <matt@birkholz.chandler.az.us>
Fri, 12 Nov 2010 21:30:57 +0000 (14:30 -0700)
committerMatt Birkholz <matt@birkholz.chandler.az.us>
Fri, 12 Nov 2010 21:30:57 +0000 (14:30 -0700)
doc/user-manual/user.texinfo

index 5c12808bbd5b628f0dafc44a9dcee300fdfdef67..12a526f3e89e65ed80c1e4929e0edda14baba7b0 100644 (file)
@@ -2656,7 +2656,7 @@ arithmetic}) and maximum speed.  It's safe use is entirely up to you.
 (declare (usual-integrations) (integrate-operator %increment!))
 (define (%increment! v i)
   (declare (no-type-checks) (no-range-checks))
-  (flo:vector-set! v (flo:+ (flo:vector-ref v i) 1.)))
+  (flo:vector-set! v (flo:+ (flo:vector-ref v i) 1.)))
 @end group
 @end example