about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/docs/dev
diff options
context:
space:
mode:
authorNoah Bright <noah.bright.1@gmail.com>2024-09-28 07:01:32 -0400
committerNoah Bright <noah.bright.1@gmail.com>2024-09-29 07:26:45 -0400
commit7b757b3e17ee950e29beb391c77e1dfebdd19d23 (patch)
treec6d7ddada91370f5fffd8feab1bea565e1ebd821 /src/tools/rust-analyzer/docs/dev
parent99b26382d8adbf89991d0248091a38d193fa4bbc (diff)
downloadrust-7b757b3e17ee950e29beb391c77e1dfebdd19d23.tar.gz
rust-7b757b3e17ee950e29beb391c77e1dfebdd19d23.zip
Rename object_safety to dyn_compatibility
Up to a trait implemented by another package, linking to
$CARGO_HOME/registry/cache/index.crates.io-6f17d22bba15001f/
Diffstat (limited to 'src/tools/rust-analyzer/docs/dev')
-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 6c4daecc58f..3dcd430cea5 100644
--- a/src/tools/rust-analyzer/docs/dev/syntax.md
+++ b/src/tools/rust-analyzer/docs/dev/syntax.md
@@ -378,7 +378,7 @@ impl AstNode for AssocItem {
 }
 ```
 
-Shared AST substructures are modeled via (object safe) traits:
+Shared AST substructures are modeled via (dynamically compatible) traits:
 
 ```rust
 trait HasVisibility: AstNode {