@@ -64,7 +64,7 @@ class AddTo(InfixOperator, InplaceInfixOperator):
6464
6565 operator_symbol = SymbolPlus
6666 return_before_value : bool = True
67- summary_text = "add a value and assigns that returning the new value"
67+ summary_text = "add a value and update; return the updated value"
6868
6969 def eval (self , expr , increment , evaluation : Evaluation ):
7070 """%(name)s[expr_, increment_]"""
@@ -123,7 +123,7 @@ class Decrement(InplaceInfixOperator, InfixOperator, PostfixOperator):
123123
124124 returns_updated_value = False
125125 summary_text = (
126- "decreases the value by one and assigns that returning the original value"
126+ "decreases a value by one and assign the value; return the original value"
127127 )
128128
129129
@@ -150,7 +150,7 @@ class DivideBy(InplaceInfixOperator, InfixOperator):
150150 rules = {
151151 "x_ /= dx_" : "x = x / dx" ,
152152 }
153- summary_text = "divide a value and assigns that returning the new value"
153+ summary_text = "divide by a value and update; return the new value"
154154
155155
156156class Increment (InplaceInfixOperator , InfixOperator , PostfixOperator ):
@@ -206,9 +206,7 @@ class Increment(InplaceInfixOperator, InfixOperator, PostfixOperator):
206206 increment_symbol = Integer1
207207 operator_symbol = SymbolPlus
208208 returns_updated_value : bool = False
209- summary_text = (
210- "increases the value by one and assigns that returning the original value"
211- )
209+ summary_text = "increases the value by one and update; return the original value"
212210
213211
214212class PreDecrement (InplaceInfixOperator , PrefixOperator ):
@@ -243,7 +241,7 @@ class PreDecrement(InplaceInfixOperator, PrefixOperator):
243241 increment_symbol = IntegerM1
244242 operator_symbol = SymbolPlus
245243 returns_updated_value : bool = True
246- summary_text = "decrease the value by one and assigns that returning the new value"
244+ summary_text = "decrease the value by one and update; return the new value"
247245
248246
249247class PreIncrement (InplaceInfixOperator , PrefixOperator ):
@@ -296,7 +294,7 @@ class PreIncrement(InplaceInfixOperator, PrefixOperator):
296294 operator_symbol = SymbolPlus
297295 return_before_value : bool = False
298296
299- summary_text = "increase the value by one and assigns that returning the new value"
297+ summary_text = "increase the value by one and updage; return the new value"
300298
301299
302300class SubtractFrom (InfixOperator ):
@@ -325,7 +323,7 @@ class SubtractFrom(InfixOperator):
325323 rules = {
326324 "x_ -= dx_" : "x = x - dx" ,
327325 }
328- summary_text = "subtract a value and assins that returning the new value"
326+ summary_text = "subtract a value and update; return the new value"
329327
330328
331329class TimesBy (InfixOperator ):
@@ -353,4 +351,4 @@ class TimesBy(InfixOperator):
353351 rules = {
354352 "x_ *= dx_" : "x = x * dx" ,
355353 }
356- summary_text = "multiply a value and assigns that returning the new value"
354+ summary_text = "multiply a value and update; return the new value"
0 commit comments