aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-01-07 12:27:17 +0000
committerGitHub <[email protected]>2021-01-07 12:27:17 +0000
commit7967ce85cfc5fc2b1996425b44f2a45d0841c8ff (patch)
tree4495b9de7ea6c8e9dd9fd347d42517e9dee511fa /docs
parentc3e9fb183bc287d83b97b776edc87c54d18d1a73 (diff)
parent72b9a4fbd3c12f3250b9157a1d44230e04ec8b22 (diff)
Merge #7184
7184: Changes Cursor Marker To $0 r=matklad a=kevaundray Co-authored-by: Kevaundray Wedderburn <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r--docs/dev/style.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md
index 58b309379..d91a9108e 100644
--- a/docs/dev/style.md
+++ b/docs/dev/style.md
@@ -111,7 +111,7 @@ When using multiline fixtures, use unindented raw string literals:
111 r#" 111 r#"
112struct S { foo: i32} 112struct S { foo: i32}
113fn main() { 113fn main() {
114 let <|>foo = 92; 114 let $0foo = 92;
115 S { foo } 115 S { foo }
116} 116}
117"#, 117"#,