You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- fixed typos and inconsistencies in documentation
- in some cases the same typos were copied/propagated to many places:
- `auxilliary` instead of `auxiliary`
- `anthing` instead of `anything`
- `lease` instead of `least`
- `Identitfy` instead of `Identify`
- in some cases the symbol names in the docs did not match the actual
symbols in the code
There are no logical code changes here, it's only docs, so it should be
sage to merge.
Copy file name to clipboardExpand all lines: library/fixed_point/src/Tests.qs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ operation TestOperation(a : Double, b : Double, op : (FixedPoint, FixedPoint) =>
91
91
92
92
letexpected=reference(a, b);
93
93
letdifference=expected-measured;
94
-
Fact(difference<0.001, $"Difference of {difference} is outside of the expected range. Expected {expected} and measured result was {measured}. (Inputs were {name}({a}, {b})");
94
+
Fact(difference<0.001, $"Difference of {difference} is outside of the expected range. Expected {expected} and measured result was {measured}. (Inputs were {name}({a}, {b}))");
95
95
ResetAll(register1+register2);
96
96
}
97
97
@@ -117,6 +117,6 @@ operation TestOperation3(a : Double, b : Double, op : (FixedPoint, FixedPoint, F
117
117
118
118
letexpected=reference(a, b);
119
119
letdifference=expected-measured;
120
-
Fact(difference<0.001, $"Difference of {difference} is outside of the expected range. Expected {expected} and measured result was {measured}. (Inputs were {name}({a}, {b})");
120
+
Fact(difference<0.001, $"Difference of {difference} is outside of the expected range. Expected {expected} and measured result was {measured}. (Inputs were {name}({a}, {b}))");
0 commit comments