From b22c7f82895ac4ad1bc628dbb23d4b416354a32c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Videla?= Date: Tue, 23 Jan 2024 19:33:37 +0900 Subject: [PATCH] Update docs/source/reference/operators.rst --- docs/source/reference/operators.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/reference/operators.rst b/docs/source/reference/operators.rst index e8b616702..baf030eea 100644 --- a/docs/source/reference/operators.rst +++ b/docs/source/reference/operators.rst @@ -99,7 +99,7 @@ example: test = 1 - 3 - 10 This program will raise a warning on the last line of module ``C`` because -there are two conflicting fixities in scope, should we parse the expression +there are two conflicting fixities in scope. Should we parse the expression as ``(1 - 3) - 10`` or as ``1 - (3 - 10)``? In those cases, you can hide the extra fixity you do not wish to use by using ``%hide``: