about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/docs/dev/syntax.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-02-05 06:24:06 +0000
committerbors <bors@rust-lang.org>2024-02-05 06:24:06 +0000
commit8c0b4f67c9b4bf477df38c16669fd576d46a2b3d (patch)
tree57bed4a46e9cf16df0c9b240293a24d907b4c22c /src/tools/rust-analyzer/docs/dev/syntax.md
parent0984becf01112cbd3583c796541760b65340c8db (diff)
parenta2d3eed58dfedd7b9e3870c88efa1208e4994f40 (diff)
downloadrust-8c0b4f67c9b4bf477df38c16669fd576d46a2b3d.tar.gz
rust-8c0b4f67c9b4bf477df38c16669fd576d46a2b3d.zip
Auto merge of #120660 - matthiaskrgr:rollup-zuqljul, r=matthiaskrgr
Rollup of 9 pull requests

Successful merges:

 - #119481 (Clarify ambiguity in select_nth_unstable docs)
 - #119600 (Remove outdated references to librustc_middle)
 - #120458 (Document `&CStr` to `CString` conversion)
 - #120569 (coverage: Improve handling of function/closure spans)
 - #120572 (Update libc to 0.2.153)
 - #120587 (miri: normalize struct tail in ABI compat check)
 - #120607 (fix #120603 by adding a check in default_read_buf)
 - #120636 (Subtree update of `rust-analyzer`)
 - #120641 (rustdoc: trait.impl, type.impl: sort impls to make it not depend on serialization order)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'src/tools/rust-analyzer/docs/dev/syntax.md')
-rw-r--r--src/tools/rust-analyzer/docs/dev/syntax.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/docs/dev/syntax.md b/src/tools/rust-analyzer/docs/dev/syntax.md
index fd6f220f4fa..6c4daecc58f 100644
--- a/src/tools/rust-analyzer/docs/dev/syntax.md
+++ b/src/tools/rust-analyzer/docs/dev/syntax.md
@@ -128,7 +128,7 @@ Interior nodes are shared as well (for example in `(1 + 1) * (1 + 1)`).
 Note that, the result of the interning is an `Arc<Node>`.
 That is, it's not an index into interning table, so you don't have to have the table around to do anything with the tree.
 Each tree is fully self-contained (although different trees might share parts).
-Currently, the interner is created per-file, but it will be easy to use a per-thread or per-some-contex one.
+Currently, the interner is created per-file, but it will be easy to use a per-thread or per-some-context one.
 
 We use a `TextSize`, a newtyped `u32`, to store the length of the text.