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

docs: fix formatting for reversed order field example #1836

Merged
merged 2 commits into from
Jul 13, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -506,9 +506,13 @@ public com.google.bigtable.v2.ReadRowsRequest.RequestStatsView getRequestStatsVi
*
* Return rows in lexiographical descending order of the row keys. The row
* contents will not be affected by this flag.
* Example result set: [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"}, {key: "k1", "f:col1": "v2",
* "f:col2": "v2"} ].
*
* Example result set:
*
* [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"},
* {key: "k1", "f:col1": "v2", "f:col2": "v2"}
* ]
* </pre>
*
* <code>bool reversed = 7;</code>
Expand Down Expand Up @@ -1788,9 +1792,13 @@ public Builder clearRequestStatsView() {
*
* Return rows in lexiographical descending order of the row keys. The row
* contents will not be affected by this flag.
* Example result set: [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"}, {key: "k1", "f:col1": "v2",
* "f:col2": "v2"} ].
*
* Example result set:
*
* [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"},
* {key: "k1", "f:col1": "v2", "f:col2": "v2"}
* ]
* </pre>
*
* <code>bool reversed = 7;</code>
Expand All @@ -1810,9 +1818,13 @@ public boolean getReversed() {
*
* Return rows in lexiographical descending order of the row keys. The row
* contents will not be affected by this flag.
* Example result set: [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"}, {key: "k1", "f:col1": "v2",
* "f:col2": "v2"} ].
*
* Example result set:
*
* [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"},
* {key: "k1", "f:col1": "v2", "f:col2": "v2"}
* ]
* </pre>
*
* <code>bool reversed = 7;</code>
Expand All @@ -1836,9 +1848,13 @@ public Builder setReversed(boolean value) {
*
* Return rows in lexiographical descending order of the row keys. The row
* contents will not be affected by this flag.
* Example result set: [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"}, {key: "k1", "f:col1": "v2",
* "f:col2": "v2"} ].
*
* Example result set:
*
* [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"},
* {key: "k1", "f:col1": "v2", "f:col2": "v2"}
* ]
* </pre>
*
* <code>bool reversed = 7;</code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,13 @@ public interface ReadRowsRequestOrBuilder
*
* Return rows in lexiographical descending order of the row keys. The row
* contents will not be affected by this flag.
* Example result set: [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"}, {key: "k1", "f:col1": "v2",
* "f:col2": "v2"} ].
*
* Example result set:
*
* [
* {key: "k2", "f:col1": "v1", "f:col2": "v1"},
* {key: "k1", "f:col1": "v2", "f:col2": "v2"}
* ]
* </pre>
*
* <code>bool reversed = 7;</code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,13 @@ message ReadRowsRequest {
//
// Return rows in lexiographical descending order of the row keys. The row
// contents will not be affected by this flag.
// Example result set: [
// {key: "k2", "f:col1": "v1", "f:col2": "v1"}, {key: "k1", "f:col1": "v2",
// "f:col2": "v2"} ].
//
// Example result set:
//
// [
// {key: "k2", "f:col1": "v1", "f:col2": "v1"},
// {key: "k1", "f:col1": "v2", "f:col2": "v2"}
// ]
bool reversed = 7;
}

Expand Down