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: Miss double quotation on the db.json #55450

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
20 changes: 10 additions & 10 deletions adev/src/content/tutorials/first-app/steps/14-http/README.md
Expand Up @@ -29,7 +29,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
{
"locations": [
{
"id": 0,
"id": "0",
"name": "Acme Fresh Start Housing",
"city": "Chicago",
"state": "IL",
Expand All @@ -39,7 +39,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
"laundry": true
},
{
"id": 1,
"id": "1",
"name": "A113 Transitional Housing",
"city": "Santa Monica",
"state": "CA",
Expand All @@ -49,7 +49,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
"laundry": true
},
{
"id": 2,
"id": "2",
"name": "Warm Beds Housing Support",
"city": "Juneau",
"state": "AK",
Expand All @@ -59,7 +59,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
"laundry": false
},
{
"id": 3,
"id": "3",
"name": "Homesteady Housing",
"city": "Chicago",
"state": "IL",
Expand All @@ -69,7 +69,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
"laundry": false
},
{
"id": 4,
"id": "4",
"name": "Happy Homes Group",
"city": "Gary",
"state": "IN",
Expand All @@ -79,7 +79,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
"laundry": false
},
{
"id": 5,
"id": "5",
"name": "Hopeful Apartment Group",
"city": "Oakland",
"state": "CA",
Expand All @@ -89,7 +89,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
"laundry": true
},
{
"id": 6,
"id": "6",
"name": "Seriously Safe Towns",
"city": "Oakland",
"state": "CA",
Expand All @@ -99,7 +99,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
"laundry": true
},
{
"id": 7,
"id": "7",
"name": "Hopeful Housing Solutions",
"city": "Oakland",
"state": "CA",
Expand All @@ -109,7 +109,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
"laundry": true
},
{
"id": 8,
"id": "8",
"name": "Seriously Safe Towns",
"city": "Oakland",
"state": "CA",
Expand All @@ -119,7 +119,7 @@ JSON Server is an open source tool used to create mock REST APIs. You'll use it
"laundry": false
},
{
"id": 9,
"id": "9",
"name": "Capital Safe Towns",
"city": "Portland",
"state": "OR",
Expand Down
20 changes: 10 additions & 10 deletions aio/content/examples/first-app-lesson-14/db.json
@@ -1,7 +1,7 @@
{
"locations": [
{
"id": 0,
"id": "0",
"name": "Acme Fresh Start Housing",
"city": "Chicago",
"state": "IL",
Expand All @@ -11,7 +11,7 @@
"laundry": true
},
{
"id": 1,
"id": "1",
"name": "A113 Transitional Housing",
"city": "Santa Monica",
"state": "CA",
Expand All @@ -21,7 +21,7 @@
"laundry": true
},
{
"id": 2,
"id": "2",
"name": "Warm Beds Housing Support",
"city": "Juneau",
"state": "AK",
Expand All @@ -31,7 +31,7 @@
"laundry": false
},
{
"id": 3,
"id": "3",
"name": "Homesteady Housing",
"city": "Chicago",
"state": "IL",
Expand All @@ -41,7 +41,7 @@
"laundry": false
},
{
"id": 4,
"id": "4",
"name": "Happy Homes Group",
"city": "Gary",
"state": "IN",
Expand All @@ -51,7 +51,7 @@
"laundry": false
},
{
"id": 5,
"id": "5",
"name": "Hopeful Apartment Group",
"city": "Oakland",
"state": "CA",
Expand All @@ -61,7 +61,7 @@
"laundry": true
},
{
"id": 6,
"id": "6",
"name": "Seriously Safe Towns",
"city": "Oakland",
"state": "CA",
Expand All @@ -71,7 +71,7 @@
"laundry": true
},
{
"id": 7,
"id": "7",
"name": "Hopeful Housing Solutions",
"city": "Oakland",
"state": "CA",
Expand All @@ -81,7 +81,7 @@
"laundry": true
},
{
"id": 8,
"id": "8",
"name": "Seriously Safe Towns",
"city": "Oakland",
"state": "CA",
Expand All @@ -91,7 +91,7 @@
"laundry": false
},
{
"id": 9,
"id": "9",
"name": "Capital Safe Towns",
"city": "Portland",
"state": "OR",
Expand Down