diff --git a/src/main/java/net/imglib2/img/cell/Cell.java b/src/main/java/net/imglib2/img/cell/Cell.java index 68e69e922..4f788a550 100644 --- a/src/main/java/net/imglib2/img/cell/Cell.java +++ b/src/main/java/net/imglib2/img/cell/Cell.java @@ -81,7 +81,7 @@ public Cell( final int[] dimensions, final long[] min, final A data ) } /** - * Get the basic type array that stores this cells pixels. + * Get the basic type array that stores this cell's pixels. * * @return underlying basic type array. */ diff --git a/src/main/java/net/imglib2/img/cell/LazyCellImg.java b/src/main/java/net/imglib2/img/cell/LazyCellImg.java index 5d44fccbc..e20f30c09 100644 --- a/src/main/java/net/imglib2/img/cell/LazyCellImg.java +++ b/src/main/java/net/imglib2/img/cell/LazyCellImg.java @@ -45,7 +45,7 @@ /** * A {@link AbstractCellImg} that obtains its Cells lazily when they are * accessed. Cells are obtained by a {@link Get} method that is provided by the - * user. Typically this is some kind of cache. + * user. Typically, this is some kind of cache. * * @param * the pixel type