Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix @has checks "no closing quotation" error
Apparently `"foo\""` has different behavior from `'foo\''` in Python
shlex. See the [discussion on Zulip][z] for more.

[z]: https://rust-lang.zulipchat.com/#narrow/stream/266220-rustdoc/topic/.40has.20checks.20.22no.20closing.20quotation.22
  • Loading branch information
camelid committed Feb 8, 2021
commit 0a3452110c605655e7ab949c0904f053ab0cc71b
6 changes: 3 additions & 3 deletions src/test/rustdoc/smart-punct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
// @has "foo/index.html" "//p" "This is the “start” of the ‘document’! How’d you know that “it’s” the start?"
// @has "foo/index.html" "//h1" "Header with “smart punct’”"
// @has "foo/index.html" '//a[@href="https://www.rust-lang.org"]' "link with “smart punct’” – yessiree!"
// @has "foo/index.html" '//code' 'this inline code -- it shouldn\'t have "smart punct"'
// @has "foo/index.html" '//pre' 'let x = "don\'t smart-punct me -- please!";'
// @has "foo/index.html" '//pre' 'I say "don\'t smart-punct me -- please!"'
// @has "foo/index.html" '//code' "this inline code -- it shouldn't have \"smart punct\""
// @has "foo/index.html" '//pre' "let x = \"don't smart-punct me -- please!\";"
// @has "foo/index.html" '//pre' "I say \"don't smart-punct me -- please!\""