From da7b98b4baf6cf7146969a13c23a4e2a242e23fc Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Tue, 15 Nov 2016 01:25:35 +0100 Subject: [PATCH] Comment fix. --- lslopt/lsloutput.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lslopt/lsloutput.py b/lslopt/lsloutput.py index c6b7245..1dfffea 100644 --- a/lslopt/lsloutput.py +++ b/lslopt/lsloutput.py @@ -226,9 +226,9 @@ class outscript(object): # unary minus. Consider the following two statements: # (~-a) * a # a * (~-a) * a - # In one case, the (~-a) is a left child; in the other, it's a - # right child. In both, the parentheses are mandatory, or they - # would be interpreted respectively as: + # In one case, the (~-a) is a left child; in the other, it's + # part of a right child. In both, cases, the parentheses are + # mandatory, or they would be interpreted respectively as: # ~-(a * a) # a * ~-(a * a) # Yet the tree structure makes it quite hard to detect these.