diff --git a/docs/spec/api.md b/docs/spec/api.md index f7564bbb7..aed326e11 100644 --- a/docs/spec/api.md +++ b/docs/spec/api.md @@ -5481,7 +5481,7 @@ The following parameters should be specified on the request: |Name|Kind|Description| |----|----|-----------| -|`n`|query|Limit the number of entries in each response. It not present, all entries will be returned.| +|`n`|query|Limit the number of entries in each response. It not present, 100 entries will be returned.| |`last`|query|Result set will include values lexically after last.| diff --git a/registry/api/v2/descriptors.go b/registry/api/v2/descriptors.go index b1090fc9f..f2ec769b9 100644 --- a/registry/api/v2/descriptors.go +++ b/registry/api/v2/descriptors.go @@ -99,7 +99,7 @@ var ( { Name: "n", Type: "integer", - Description: "Limit the number of entries in each response. It not present, all entries will be returned.", + Description: "Limit the number of entries in each response. It not present, 100 entries will be returned.", Format: "", Required: false, },