]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/typed/typed-docs.factor
docs: Fix help-lint-all mistakes.
[factor.git] / basis / typed / typed-docs.factor
index 8f2e0e6f36872247344a6278a0c26d5dcbd3a263..262a0a03e0e25ef2487b0388023a1939a071861d 100644 (file)
@@ -32,13 +32,13 @@ HELP: TYPED::
 { $example
 "USING: kernel math math.libm prettyprint typed ;
 IN: scratchpad
-
+<<
 TYPED:: quadratic-roots ( a: float b: float c: float -- q1: float q2: float )
     b neg
     b sq 4.0 a * c * - fsqrt
     [ + ] [ - ] 2bi
     [ 2.0 a * / ] bi@ ;
-
+>>
 1 0 -9/4 quadratic-roots [ . ] bi@"
 "1.5
 -1.5" } } ;