Skip to content

Commit 489808a

Browse files
authored
Fix docstring for isidentifier (#38356)
1 parent 6b7d530 commit 489808a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/show.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,7 @@ is_id_char(c::AbstractChar) = ccall(:jl_id_char, Cint, (UInt32,), c) != 0
11381138
Return whether the symbol or string `s` contains characters that are parsed as
11391139
a valid identifier in Julia code.
11401140
1141-
Internally Julia allows any sequence of characters in a `Symbol` (except `\0`s),
1141+
Internally Julia allows any sequence of characters in a `Symbol` (except `\\0`s),
11421142
and macros automatically use variable names containing `#` in order to avoid
11431143
naming collision with the surrounding code. In order for the parser to
11441144
recognize a variable, it uses a limited set of characters (greatly extended by

0 commit comments

Comments
 (0)