From b2860d698db9e728273524ee0cf39a39b3074ae4 Mon Sep 17 00:00:00 2001 From: farmer Date: Sat, 28 Mar 2026 11:04:53 +0800 Subject: [PATCH] fix page token typo Signed-off-by: farmer --- docs/src/rest/impl-spec.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/rest/impl-spec.md b/docs/src/rest/impl-spec.md index 650853da7..597cd6903 100644 --- a/docs/src/rest/impl-spec.md +++ b/docs/src/rest/impl-spec.md @@ -124,11 +124,11 @@ The implementation: ```json { "namespaces": ["analytics", "ml", "reporting"], - "next_page_token": "abc123" + "page_token": "abc123" } ``` -The `next_page_token` field is only present if there are more results. +The `page_token` field is only present if there are more results. **Error Handling:** @@ -283,11 +283,11 @@ The implementation: ```json { "tables": ["users", "orders", "products"], - "next_page_token": "def456" + "page_token": "def456" } ``` -The `next_page_token` field is only present if there are more results. +The `page_token` field is only present if there are more results. **Error Handling:**