From 276162804c539e619bd69000781a393b82ca9508 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 12 Feb 2024 10:20:25 -0800 Subject: [PATCH] math.affine-transforms: fix help-lint on win32 --- extra/math/affine-transforms/affine-transforms-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/math/affine-transforms/affine-transforms-docs.factor b/extra/math/affine-transforms/affine-transforms-docs.factor index c5ca61d67b..c87f6b1239 100644 --- a/extra/math/affine-transforms/affine-transforms-docs.factor +++ b/extra/math/affine-transforms/affine-transforms-docs.factor @@ -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 { 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 }" ? ] } -- 2.34.1