diff --git a/docs/src/api/methods/_getBlocksWithLimit.mdx b/docs/src/api/methods/_getBlocksWithLimit.mdx
index 6080a027c5..04586dea30 100644
--- a/docs/src/api/methods/_getBlocksWithLimit.mdx
+++ b/docs/src/api/methods/_getBlocksWithLimit.mdx
@@ -24,7 +24,7 @@ Returns a list of confirmed blocks starting at the given slot
start_slot, as u64
integer
-
+
limit, as u64
integer (must be no more than 500,000 blocks higher
than the start_slot
)
diff --git a/docs/src/api/methods/_getHighestSnapshotSlot.mdx b/docs/src/api/methods/_getHighestSnapshotSlot.mdx
index 5028f77e6f..73e0603bae 100644
--- a/docs/src/api/methods/_getHighestSnapshotSlot.mdx
+++ b/docs/src/api/methods/_getHighestSnapshotSlot.mdx
@@ -34,7 +34,7 @@ NEW: This method is only available in solana-core v1.9 or newer. Please use
When the node has a snapshot, this returns a JSON object with the following fields:
- `full: ` - Highest full snapshot slot
-- `incremental: ` - Highest incremental snapshot slot _based on_ `full`
+- `incremental: ` - Highest incremental snapshot slot _based on_ `full`
diff --git a/docs/src/api/methods/_getSignatureStatuses.mdx b/docs/src/api/methods/_getSignatureStatuses.mdx
index 7c52c85dcd..9617d7d228 100644
--- a/docs/src/api/methods/_getSignatureStatuses.mdx
+++ b/docs/src/api/methods/_getSignatureStatuses.mdx
@@ -25,7 +25,7 @@ retains statuses for all active slots plus `MAX_RECENT_BLOCKHASHES` rooted slots
### Parameters:
-
+
An array of transaction signatures to confirm, as base-58 encoded strings (up
to a maximum of 256)
diff --git a/docs/src/api/methods/_getVersion.mdx b/docs/src/api/methods/_getVersion.mdx
index 0ed4d94020..a5e9bc2f0e 100644
--- a/docs/src/api/methods/_getVersion.mdx
+++ b/docs/src/api/methods/_getVersion.mdx
@@ -25,8 +25,8 @@ Returns the current Solana version running on the node
The result field will be a JSON object with the following fields:
-- `solana-core` - software version of solana-core
-- `feature-set` - unique identifier of the current software's feature set
+- `solana-core` - software version of solana-core as a `string`
+- `feature-set` - unique identifier of the current software's feature set as a `u32`
@@ -43,7 +43,7 @@ curl http://localhost:8899 -X POST -H "Content-Type: application/json" -d '
### Response:
```json
-{ "jsonrpc": "2.0", "result": { "solana-core": "1.15.0" }, "id": 1 }
+{ "jsonrpc": "2.0", "result": { "feature-set": 2891131721, "solana-core": "1.16.7" }, "id": 1 }
```