diff --git a/docs/api/03-objects/battlesnake.md b/docs/api/03-objects/battlesnake.md
index 24a133b..d074a7b 100644
--- a/docs/api/03-objects/battlesnake.md
+++ b/docs/api/03-objects/battlesnake.md
@@ -29,13 +29,13 @@ sidebar_position: 4
| **Property** | **Type** | **Description** |
| ------------------ | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| **id** | string | Unique identifier for this Battlesnake in the context of the current Game.Example: "totally-unique-snake-id" |
-| **name** | string | Name given to this Battlesnake by its author.Example: "Sneky McSnek Face" |
-| **health** | integer | Health value of this Battlesnake, between 0 and 100 inclusively.Example: 54 |
-| **body** | array | Array of coordinates representing this Battlesnake's location on the game board. This array is ordered from head to tail.Example: [{"x": 0, "y": 0}, ..., {"x": 2, "y": 0}] |
-| **latency** | string | The previous response time of this Battlesnake, in milliseconds. If the Battlesnake timed out and failed to respond, the game timeout will be returned (game.timeout)Example: "500" |
-| **head** | object | Coordinates for this Battlesnake's head. Equivalent to the first element of the body array.Example: {"x": 0, "y": 0} |
-| **length** | integer | Length of this Battlesnake from head to tail. Equivalent to the length of the body array.Example: 3 |
-| **shout** | string | Message shouted by this Battlesnake on the previous turn.Example: "why are we shouting??" |
-| **squad** | string | The squad that the Battlesnake belongs to. Used to identify squad members in Squad Mode games.Example: "1" |
+| **id** | string | Unique identifier for this Battlesnake in the context of the current Game. Example: "totally-unique-snake-id" |
+| **name** | string | Name given to this Battlesnake by its author. Example: "Sneky McSnek Face" |
+| **health** | integer | Health value of this Battlesnake, between 0 and 100 inclusively. Example: 54 |
+| **body** | array | Array of coordinates representing this Battlesnake's location on the game board. This array is ordered from head to tail. Example: [{"x": 0, "y": 0}, ..., {"x": 2, "y": 0}] |
+| **latency** | string | The previous response time of this Battlesnake, in milliseconds. If the Battlesnake timed out and failed to respond, the game timeout will be returned (game.timeout) Example: "500" |
+| **head** | object | Coordinates for this Battlesnake's head. Equivalent to the first element of the body array. Example: {"x": 0, "y": 0} |
+| **length** | integer | Length of this Battlesnake from head to tail. Equivalent to the length of the body array. Example: 3 |
+| **shout** | string | Message shouted by this Battlesnake on the previous turn. Example: "why are we shouting??" |
+| **squad** | string | The squad that the Battlesnake belongs to. Used to identify squad members in Squad Mode games. Example: "1" |
| **customizations** | object | The collection of customizations that control how this Battlesnake is displayed. _Example: {"color":"#888888", "head":"default", "tail":"default" }_ |