Skip to content

Commit c2cefc1

Browse files
Clarified the name of a local variable.
1 parent df133b7 commit c2cefc1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Math-Tests-Matrix/PMQRTest.class.st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Class {
77
{ #category : #running }
88
PMQRTest >> mpTestFunction: aMatrix [
99

10-
| inverse mult identityMatrix |
10+
| inverse identityMatrix |
1111
inverse := aMatrix mpInverse.
1212
identityMatrix := inverse * aMatrix.
1313
self assert: (aMatrix * identityMatrix closeTo: aMatrix).
1414
self assert: identityMatrix * inverse closeTo: inverse.
1515
self assert: identityMatrix transpose closeTo: identityMatrix.
16-
mult := aMatrix * inverse.
17-
self assert: mult transpose closeTo: mult
16+
identityMatrix := aMatrix * inverse.
17+
self assert: identityMatrix transpose closeTo: identityMatrix
1818
]
1919

2020
{ #category : #tests }

0 commit comments

Comments
 (0)