diff --git a/doc/search.html b/doc/search.html
index db9e127..6d47914 100644
--- a/doc/search.html
+++ b/doc/search.html
@@ -1,11 +1,11 @@
-
+
Search
-
+
diff --git a/doc/type-search-index.js b/doc/type-search-index.js
index 8d2582c..3977484 100644
--- a/doc/type-search-index.js
+++ b/doc/type-search-index.js
@@ -1 +1 @@
-typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"","l":"Cardinal"},{"p":"","l":"Color"},{"p":"","l":"Coordinate"},{"p":"","l":"GomokuAI"},{"p":"","l":"GomokuBoard"},{"p":"","l":"GomokuCell"},{"p":"","l":"GomokuGame"},{"p":"","l":"Human"},{"p":"","l":"Player"}];updateSearchResults();
\ No newline at end of file
+typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"","l":"Cardinal"},{"p":"","l":"Color"},{"p":"","l":"ConsoleRenderer"},{"p":"","l":"Coordinate"},{"p":"","l":"GomokuAI"},{"p":"","l":"GomokuBoard"},{"p":"","l":"GomokuCell"},{"p":"","l":"GomokuGame"},{"p":"","l":"GomokuRenderer"},{"p":"","l":"Human"},{"p":"","l":"Player"},{"p":"","l":"RenderBoard"},{"p":"","l":"RenderCanvas"},{"p":"","l":"SwingRenderer"}];updateSearchResults();
\ No newline at end of file
diff --git a/src/GomokuAI.java b/src/GomokuAI.java
index 45a324a..184c255 100644
--- a/src/GomokuAI.java
+++ b/src/GomokuAI.java
@@ -17,7 +17,7 @@ public class GomokuAI extends Player{
//------------------Methods--------------------------
/**
* Return the coordinate of the move played by the Gomoku AI.
- * @param Board The actual Gomoku board.
+ * @param board The actual Gomoku board.
* @return The Cell of the move played.
*/
public GomokuCell chooseMove(GomokuBoard board){
@@ -44,7 +44,7 @@ public class GomokuAI extends Player{
/**
* Return a Map of all Cell playable, and their point.
- * @param Board The actual Gomoku board.
+ * @param board The actual Gomoku board.
* @return the Map of all Cell playable, and their point.
*/
public Map GetCellPoint(GomokuBoard board){
@@ -74,4 +74,4 @@ public class GomokuAI extends Player{
return map;
}
-}
\ No newline at end of file
+}
diff --git a/src/Human.java b/src/Human.java
index 089c6e1..c8ab8dd 100644
--- a/src/Human.java
+++ b/src/Human.java
@@ -10,7 +10,7 @@ public class Human extends Player{
//------------------Methods--------------------------
/**
* Return the coordinate of the move played by the player.
- * @param Board The actual Gomoku board.
+ * @param board The actual Gomoku board.
* @return The cell of the move played.
*/
public GomokuCell chooseMove(GomokuBoard board){
@@ -62,4 +62,4 @@ public class Human extends Player{
return board.get(x,y);
}
-}
\ No newline at end of file
+}
diff --git a/src/Player.java b/src/Player.java
index 9350896..da11404 100644
--- a/src/Player.java
+++ b/src/Player.java
@@ -47,8 +47,8 @@ abstract class Player{
/**
* Return the coordinate of the move played by the player.
- * @param Board The actual Gomoku board.
+ * @param board The actual Gomoku board.
* @return The cell of the move played.
*/
public abstract GomokuCell chooseMove(GomokuBoard board);
-}
\ No newline at end of file
+}