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.
2 parents 65e31a1 + 51f42db commit 95f3dcdCopy full SHA for 95f3dcd
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