Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix the /v2/_catalog n parameter description #3425

Merged
merged 3 commits into from
Jun 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/spec/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -5450,7 +5450,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.|


Expand Down
2 changes: 1 addition & 1 deletion registry/api/v2/descriptors.go
Original file line number Diff line number Diff line change
Expand Up @@ -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: "<integer>",
Required: false,
},
Expand Down