-
-
Notifications
You must be signed in to change notification settings - Fork 249
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
[Syntax lookup] Add doc for string literal syntax #352
[Syntax lookup] Add doc for string literal syntax #352
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looking good! just a few details added as a comment
id: "string-delimiter" | ||
keywords: ["string", "delimiter"] | ||
name: "\"\"" | ||
summary: "This is the `string` delimiter." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
summary: "This is the `string` delimiter." | |
summary: "This is the `string` literal syntax." |
@@ -0,0 +1,33 @@ | |||
--- | |||
id: "string-delimiter" | |||
keywords: ["string", "delimiter"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keywords: ["string", "delimiter"] | |
keywords: ["string"] |
category: "languageconstructs" | ||
--- | ||
|
||
The `string` delimiter is composed of two **double** quotes. Single quotes are reserved for the `char` type. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The `string` delimiter is composed of two **double** quotes. Single quotes are reserved for the `char` type. | |
A `string` literal is composed of two **double** quotes. Single quotes are reserved for the `char` type. |
@@ -0,0 +1,33 @@ | |||
--- | |||
id: "string-delimiter" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
id: "string-delimiter" | |
id: "string-literal" |
Thanks @ryyppy, updated. |
Looking great. Thanks! |
Proposal for #162
This is my first time opening a PR 👋 Edits are enabled, please send suggestions.