From a46deeb6ba16ffc577ce92623a9ffcb876c2422c Mon Sep 17 00:00:00 2001 From: Intelli Date: Fri, 28 Jul 2023 15:42:40 -0600 Subject: [PATCH] Fixed typo in API documentation --- docs/api/version/v7.md | 12 ++++++------ docs/api/version/v8.md | 12 ++++++------ docs/api/version/v9.md | 14 +++++++------- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/api/version/v7.md b/docs/api/version/v7.md index 929a5c1..3fe6654 100644 --- a/docs/api/version/v7.md +++ b/docs/api/version/v7.md @@ -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) @@ -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(); - //... + // ... } } } @@ -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(); - //... + // ... } } } @@ -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(); - //... + // ... } } } @@ -358,7 +358,7 @@ public void run() { int x = result.getX(); int y = result.getY(); int z = result.getZ(); - //... + // ... } } } @@ -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(); - //... + // ... } } } diff --git a/docs/api/version/v8.md b/docs/api/version/v8.md index 171926f..120ffca 100644 --- a/docs/api/version/v8.md +++ b/docs/api/version/v8.md @@ -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) @@ -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(); - //... + // ... } } } @@ -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(); - //... + // ... } } } @@ -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(); - //... + // ... } } } @@ -358,7 +358,7 @@ public void run() { int x = result.getX(); int y = result.getY(); int z = result.getZ(); - //... + // ... } } } @@ -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(); - //... + // ... } } } diff --git a/docs/api/version/v9.md b/docs/api/version/v9.md index 282e3b7..a998d9f 100644 --- a/docs/api/version/v9.md +++ b/docs/api/version/v9.md @@ -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) @@ -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(); - //... + // ... } } } @@ -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(); - //... + // ... } } } @@ -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(); - //... + // ... } } } @@ -380,7 +380,7 @@ public void run() { int x = result.getX(); int y = result.getY(); int z = result.getZ(); - //... + // ... } } } @@ -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(); - //... + // ... } } } @@ -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 - //... + // ... } } }