Skip to content

Commit ad09f72

Browse files
committed
fixed code blocks
1 parent a490858 commit ad09f72

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/content/set-up-tables-1.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ Resources:
4040

4141
### What is happening?
4242

43-
🎩 We are creating a table with a Primary Key called \`listingId\` and a Sort Key called \`listingName\` both of them are strings.
43+
🎩 We are creating a table with a Primary Key called `listingId` and a Sort Key called `listingName` both of them are strings.
4444

4545
🎩 For the ProvisionedThroughput section we are basically tell AWS how many operations per second can be allowed when data is being written or read. \
4646
\
4747
\
48-
In the same directory lets create the table that will store our bookings called \`booking-db.yml\`:
48+
In the same directory lets create the table that will store our bookings called `booking-db.yml`:
4949

5050
```YAML
5151
Resources:
@@ -71,9 +71,9 @@ Resources:
7171
WriteCapacityUnits: ${self:custom.tableThroughput}
7272
```
7373
74-
We are doing the same thing here, only difference is that we made the Sort Key the \`listingId\`.
74+
We are doing the same thing here, only difference is that we made the Sort Key the `listingId`.
7575

76-
Now we need to reference it in our \`serverless.yml\`:
76+
Now we need to reference it in our `serverless.yml`:
7777

7878
```YAML
7979
resources:

0 commit comments

Comments
 (0)