Skip to content

Commit

Permalink
fix: repo-docs (#8675)
Browse files Browse the repository at this point in the history
### Description

Corrected a missing comma between items in a JSON array, which caused an
error when copying and pasting a code fragment into a JSON file
  • Loading branch information
pathliving authored Jul 5, 2024
1 parent 118b365 commit 0783973
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ First, your package manager needs to describe the locations of your packages. We
```json title="./package.json"
{
"workspaces": [
"apps/*"
"apps/*",
"packages/*"
]
}
Expand All @@ -132,7 +132,7 @@ First, your package manager needs to describe the locations of your packages. We
```json title="./package.json"
{
"workspaces": [
"apps/*"
"apps/*",
"packages/*"
]
}
Expand Down

0 comments on commit 0783973

Please sign in to comment.