diff --git a/Cell.java b/Cell.java
index 9a0b4bd6665f70adc5b71de952f25e175b04b0a6..f8a633a4e34962360bac07941948d0a9cf9fd0d8 100644
--- a/Cell.java
+++ b/Cell.java
@@ -6,11 +6,14 @@ public class Cell {
     private boolean isAlive;
 
     public Cell(){
-	this.isAlive = false;
+
+        this.isAlive = false;
     }
     
     /**
      * Determines whether this {@link Cell} is alive or not.
+     *
+
      *
      * @return {@code true} if this {@link Cell} is alive and {@code false} otherwise
      */
@@ -32,7 +35,7 @@ public class Cell {
     /**
      * Sets the state of this {@link Cell} to alive.
      *
-     * @param cellState the new state of this {@link Cell}
+     * @param *cellState the new state of this {@link Cell}
      */
 
     public void setAlive() {
@@ -42,7 +45,7 @@ public class Cell {
     /**
      * Sets the state of this {@link Cell} to dead.
      *
-     * @param cellState the new state of this {@link Cell}
+     * @param *cellState the new state of this {@link Cell}
      */
 
     public void setDead() {