Skip to content

Commit 39e618b

Browse files
committed
change argument name
1 parent 300f536 commit 39e618b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Math-Matrix/PMMatrix.class.st

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,9 @@ PMMatrix >> atAllPut: element [
270270
]
271271

272272
{ #category : #'cell accessing' }
273-
PMMatrix >> atColumn: anInteger [
273+
PMMatrix >> atColumn: acolumnNumber [
274274

275-
^ self columnAt: anInteger
275+
^ self columnAt: acolumnNumber
276276
]
277277

278278
{ #category : #'cell accessing' }
@@ -312,9 +312,9 @@ PMMatrix >> atColumn: aColumnNumber put: aCollection startingAt: rowNumber [
312312
]
313313

314314
{ #category : #'cell accessing' }
315-
PMMatrix >> atRow: anInteger [
316-
317-
^ self rowAt: anInteger
315+
PMMatrix >> atRow: aRowNumber [
316+
"answers the aRowNumber-th row in the receiver"
317+
^ self rowAt: aRowNumber
318318
]
319319

320320
{ #category : #'cell accessing' }

0 commit comments

Comments
 (0)