Skip to content

Commit 54c6246

Browse files
authored
Correct Link references and typos (#1348)
Correct Link references, typos and add missing body field
1 parent 2d68cfd commit 54c6246

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

aip/general/0121.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ reached a steady-state. for values that are related to the resource [state][].
106106

107107
Examples include:
108108

109-
- Following a successful create that is is latest mutation on a resource, a get
109+
- Following a successful create that is the latest mutation on a resource, a get
110110
request for a resource **must** return the resource.
111111
- Following a successful update that is the latest mutation on a resource, a get
112112
request for a resource **must** return the final values from the update

aip/general/0129.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ service to validate it was set correctly.
140140

141141
- **2023-10-31:** Update to approved.
142142

143-
[Declarative clients]: ./0009#declarative-clients
144-
[aip-202]: ./202.md
143+
[Declarative clients]: ./0009.md#declarative-clients
144+
[aip-202]: ./0202.md
145145

146146
<!-- prettier-ignore-start -->
147147
[aip-180]: ./0180.md

aip/general/0133.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ operation (AIP-151) instead:
113113
rpc CreateBook(CreateBookRequest) returns (google.longrunning.Operation) {
114114
option (google.api.http) = {
115115
post: "/v1/{parent=publishers/*}/books"
116+
body: "book"
116117
};
117118
option (google.longrunning.operation_info) = {
118119
response_type: "Book"
@@ -211,7 +212,7 @@ name and use it in references from other resources.
211212
[data plane]: ./0111.md#data-plane
212213
[management plane]: ./0111.md#management-plane
213214
[errors]: ./0193.md
214-
[field_behavior]: ./203.md
215+
[field_behavior]: ./0203.md
215216
[Declarative clients]: ./0009.md#declarative-clients
216217
[permission-denied]: ./0193.md#permission-denied
217218
[strong consistency]: ./0121.md#strong-consistency

aip/general/0134.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ operation (AIP-151) instead:
161161
rpc UpdateBook(UpdateBookRequest) returns (google.longrunning.Operation) {
162162
option (google.api.http) = {
163163
patch: "/v1/{book.name=publishers/*/books/*}"
164+
body: "book"
164165
};
165166
option (google.longrunning.operation_info) = {
166167
response_type: "Book"

0 commit comments

Comments
 (0)