We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 300f536 commit 39e618bCopy full SHA for 39e618b
src/Math-Matrix/PMMatrix.class.st
@@ -270,9 +270,9 @@ PMMatrix >> atAllPut: element [
270
]
271
272
{ #category : #'cell accessing' }
273
-PMMatrix >> atColumn: anInteger [
+PMMatrix >> atColumn: acolumnNumber [
274
275
- ^ self columnAt: anInteger
+ ^ self columnAt: acolumnNumber
276
277
278
@@ -312,9 +312,9 @@ PMMatrix >> atColumn: aColumnNumber put: aCollection startingAt: rowNumber [
312
313
314
315
-PMMatrix >> atRow: anInteger [
316
-
317
- ^ self rowAt: anInteger
+PMMatrix >> atRow: aRowNumber [
+ "answers the aRowNumber-th row in the receiver"
+ ^ self rowAt: aRowNumber
318
319
320
0 commit comments