Skip to content

Commit

Permalink
fix: typo in strings docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
rzvxa committed Mar 6, 2024
1 parent 8c462be commit cecde32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _docs/language/05-strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ The `string` type holds a sequence of `ASCII` characters and it can be created u
const str1 = "I am a string defined using double quotes."
const str2 = 'I am a string defined using single quotes.'
const str3 = 'You can prefix string delimiters such as \' with a backslash.'
const str3 = "You can prefix string delimiters such as \" with a backslash."
const str4 = "Or you'd use the other string delimiter for it!"
const str4 = "You can prefix string delimiters such as \" with a backslash."
const str5 = "Or you'd use the other string delimiter for it!"
```

### Mutliline strings
Expand Down

0 comments on commit cecde32

Please sign in to comment.