Skip to content

Commit

Permalink
Fixed typo in API documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Intelli committed Jul 28, 2023
1 parent 7fd50a0 commit a46deeb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
12 changes: 6 additions & 6 deletions docs/api/version/v7.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ This will parse results from a lookup. You'll then be able to view the following
* **getZ():** Get the Z coordinate of the block.
* **getType():** Get the Material of the block.
* **getBlockData():** Get the BlockData of the block.
* **getPlayer():** Get the username as a string..
* **getPlayer():** Get the username as a string.
* **getTimestamp():** Get the time of the action.
* **getActionId():** Get the action ID. (0=removed, 1=placed, 2=interaction)
* **getActionString():** Get the action as a string. (Removal, Placement, Interaction)
Expand Down Expand Up @@ -296,7 +296,7 @@ if (CoreProtect!=null){ //Ensure we have access to the API
int x = parseResult.getX();
int y = parseResult.getY();
int z = parseResult.getZ();
//...
// ...
}
}
}
Expand All @@ -316,7 +316,7 @@ if (CoreProtect!=null){ //Ensure we have access to the API
int x = result.getX();
int y = result.getY();
int z = result.getZ();
//...
// ...
}
}
}
Expand All @@ -335,7 +335,7 @@ if (CoreProtect!=null){ //Ensure we have access to the API
int x = result.getX();
int y = result.getY();
int z = result.getZ();
//...
// ...
}
}
}
Expand All @@ -358,7 +358,7 @@ public void run() {
int x = result.getX();
int y = result.getY();
int z = result.getZ();
//...
// ...
}
}
}
Expand Down Expand Up @@ -396,7 +396,7 @@ if (CoreProtect!=null){ //Ensure we have access to the API
int x = parseResult.getX();
int y = parseResult.getY();
int z = parseResult.getZ();
//...
// ...
}
}
}
Expand Down
12 changes: 6 additions & 6 deletions docs/api/version/v8.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ This will parse results from a lookup. You'll then be able to view the following
* **getZ():** Get the Z coordinate of the block.
* **getType():** Get the Material of the block.
* **getBlockData():** Get the BlockData of the block.
* **getPlayer():** Get the username as a string..
* **getPlayer():** Get the username as a string.
* **getTimestamp():** Get the time of the action.
* **getActionId():** Get the action ID. (0=removed, 1=placed, 2=interaction)
* **getActionString():** Get the action as a string. (Removal, Placement, Interaction)
Expand Down Expand Up @@ -296,7 +296,7 @@ if (CoreProtect!=null){ //Ensure we have access to the API
int x = parseResult.getX();
int y = parseResult.getY();
int z = parseResult.getZ();
//...
// ...
}
}
}
Expand All @@ -316,7 +316,7 @@ if (CoreProtect!=null){ //Ensure we have access to the API
int x = result.getX();
int y = result.getY();
int z = result.getZ();
//...
// ...
}
}
}
Expand All @@ -335,7 +335,7 @@ if (CoreProtect!=null){ //Ensure we have access to the API
int x = result.getX();
int y = result.getY();
int z = result.getZ();
//...
// ...
}
}
}
Expand All @@ -358,7 +358,7 @@ public void run() {
int x = result.getX();
int y = result.getY();
int z = result.getZ();
//...
// ...
}
}
}
Expand Down Expand Up @@ -396,7 +396,7 @@ if (CoreProtect!=null){ //Ensure we have access to the API
int x = parseResult.getX();
int y = parseResult.getY();
int z = parseResult.getZ();
//...
// ...
}
}
}
Expand Down
14 changes: 7 additions & 7 deletions docs/api/version/v9.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ This will parse results from a lookup. You'll then be able to view the following
* **getZ():** Get the Z coordinate of the block.
* **getType():** Get the Material of the block.
* **getBlockData():** Get the BlockData of the block.
* **getPlayer():** Get the username as a string..
* **getPlayer():** Get the username as a string.
* **getTimestamp():** Get the time of the action.
* **getActionId():** Get the action ID. (0=removed, 1=placed, 2=interaction)
* **getActionString():** Get the action as a string. (Removal, Placement, Interaction)
Expand Down Expand Up @@ -318,7 +318,7 @@ if (CoreProtect != null){ // Ensure we have access to the API
int x = parseResult.getX();
int y = parseResult.getY();
int z = parseResult.getZ();
//...
// ...
}
}
}
Expand All @@ -338,7 +338,7 @@ if (CoreProtect != null){ // Ensure we have access to the API
int x = result.getX();
int y = result.getY();
int z = result.getZ();
//...
// ...
}
}
}
Expand All @@ -357,7 +357,7 @@ if (CoreProtect != null){ // Ensure we have access to the API
int x = result.getX();
int y = result.getY();
int z = result.getZ();
//...
// ...
}
}
}
Expand All @@ -380,7 +380,7 @@ public void run() {
int x = result.getX();
int y = result.getY();
int z = result.getZ();
//...
// ...
}
}
}
Expand Down Expand Up @@ -430,7 +430,7 @@ if (CoreProtect != null){ // Ensure we have access to the API
int x = parseResult.getX();
int y = parseResult.getY();
int z = parseResult.getZ();
//...
// ...
}
}
}
Expand All @@ -450,7 +450,7 @@ if (CoreProtect != null){ // Ensure we have access to the API
int y = parseResult.getY();
int z = parseResult.getZ();
int action = parseResult.getActionId(); // 0 = logout, 1 = login
//...
// ...
}
}
}
Expand Down

0 comments on commit a46deeb

Please sign in to comment.