We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#
1 parent 134c756 commit 51f42dbCopy full SHA for 51f42db
docs/dev/style.md
@@ -96,19 +96,19 @@ When using multiline fixtures, use unindented raw string literals:
96
fn inline_field_shorthand() {
97
check_assist(
98
inline_local_variable,
99
- r"
+ r#"
100
struct S { foo: i32}
101
fn main() {
102
let <|>foo = 92;
103
S { foo }
104
}
105
-",
106
+"#,
107
108
109
S { foo: 92 }
110
111
112
);
113
114
```
0 commit comments