Skip to content

Commit 9828b4d

Browse files
committed
docs(example): update inaccurate code annotations
1 parent 1962601 commit 9828b4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Article.findById('1')
1919
Comment.find()
2020
.then((comments) => console.log(comments));
2121

22-
// GET /comments/1 HTTP/1.1
22+
// GET /comments/5 HTTP/1.1
2323
Comment.findById('5')
2424
.then((comment) => console.log(comment));
2525

@@ -28,6 +28,6 @@ Comment.findById('5')
2828
People.find()
2929
.then((peoples) => console.log(peoples));
3030

31-
// GET /people/1 HTTP/1.1
31+
// GET /people/9 HTTP/1.1
3232
People.findById('9')
3333
.then((people) => console.log(people));

0 commit comments

Comments
 (0)