-
Notifications
You must be signed in to change notification settings - Fork 4
Escape character text #5
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
Labels
propose closing
Proposed for closing
Comments
Presumably keeping the restriction on |
Yes - it's the |
gkellogg
added a commit
that referenced
this issue
Feb 13, 2023
Merged
gkellogg
added a commit
that referenced
this issue
Feb 15, 2023
* update example 26 add missing triple * update examples 24 and 26 add missing `@prefix` * Change literal quote requirements described in #5. * Fix typo reported in erratum 11. * Abbreviation for SPARQL is updated. This was reported in erratum 26. --------- Co-authored-by: Gregg Kellogg <gregg@greggkellogg.net>
This was addressed in 4024306 and can probably be closed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The doc says:
"""
Literals delimited by ' (U+0027), may not contain the characters ', LF (U+000A), or CR (U+000D).
Literals delimited by ", may not contain the characters ", LF, or CR.
Literals delimited by ''' may not contain the sequence of characters '''.
Literals delimited by """ may not contain the sequence of characters """.
"""
It should say
"""
Literals delimited by ' (U+0027), may not contain an unescaped ' character, ...
"""
or
"""
Literals delimited by ' (U+0027) must use an escape sequence to include the ' character,
"""
Similarly for "-strings and for triple quoted strings (
\'''
is possible).The text was updated successfully, but these errors were encountered: