]> gitweb.factorcode.org Git - factor.git/commitdiff
math.affine-transforms: fix help-lint on win32
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 12 Feb 2024 18:20:25 +0000 (10:20 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 12 Feb 2024 18:20:25 +0000 (10:20 -0800)
extra/math/affine-transforms/affine-transforms-docs.factor

index c5ca61d67bf4e67e43d71e581df43d1751be9765..c87f6b12393af7b8c6dbef8eac4fa207e9ffff9b 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2018 Björn Lindqvist
 ! See https://factorcode.org/license.txt for BSD license
-USING: help.markup help.syntax kernel literals system ;
+USING: help.markup help.syntax kernel layouts literals system ;
 IN: math.affine-transforms
 
 ARTICLE: "math.affine-transforms" "Affine Transformations of 2d Vectors"
@@ -10,7 +10,7 @@ ARTICLE: "math.affine-transforms" "Affine Transformations of 2d Vectors"
   { $example
     "USING: math.affine-transforms math.functions prettyprint ;\n45 deg>rad <rotation> { 0 4 } a.v ."
     ! XXX: investigate this windows vs mac/linux difference
-    $[ os windows?
+    $[ os windows? 64-bit? and
     "{ -2.8284271247461903 2.8284271247461903 }"
     "{ -2.82842712474619 2.8284271247461903 }" ? ]
   }