Skip to content

Commit

Permalink
add missing quotation mark in string documentation (#76)
Browse files Browse the repository at this point in the history
* add missing quotation mark

* add missing quotation mark in docs generator
  • Loading branch information
Tch1b0 authored Feb 6, 2022
1 parent 9cc5567 commit 4140e28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/docs/literals/string.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ menu:


```js
a = "test_string;
a = "test_string";

b = "test" + "_string";

Expand Down
2 changes: 1 addition & 1 deletion docs/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func main() {

tempData := templateData{
Title: "String",
Example: `a = "test_string;
Example: `a = "test_string";
b = "test" + "_string";
Expand Down

1 comment on commit 4140e28

@vercel
Copy link

@vercel vercel bot commented on 4140e28 Feb 6, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.