Skip to content

Commit d97a56e

Browse files
committed
Fixes per feedback
1 parent 7b745cc commit d97a56e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/cosmos-db/sql-api-java-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ To do this, you will need to convert your project to a maven project by completi
245245

246246
return gson.fromJson(todoItemDocument.toString(), TodoItem.class);
247247
}
248-
5. Like Azure Cosmos databases and collections, documents are also referenced by self-links. The following helper function lets us retrieve documents by another attribute (e.g. "id") rather than self-link:
248+
5. Like Azure Cosmos databases and collections, documents are also referenced by self-links. The following helper function lets us retrieve documents by another attribute (e.g. "ID") rather than self-link:
249249

250250
private Document getDocumentById(String id) {
251251
// Retrieve the document using the DocumentClient.
@@ -260,7 +260,7 @@ To do this, you will need to convert your project to a maven project by completi
260260
return null;
261261
}
262262
}
263-
6. We can use the helper method in step 5 to retrieve a TodoItem JSON document by id and then deserialize it to a POJO:
263+
6. We can use the helper method in step 5 to retrieve a TodoItem JSON document by ID and then deserialize it to a POJO:
264264

265265
@Override
266266
public TodoItem readTodoItem(String id) {

0 commit comments

Comments
 (0)