about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2023-05-13 19:48:45 -0700
committerEric Huss <eric@huss.org>2023-06-05 11:51:37 -0700
commitceda03d3c7a17708f69ef2a91b369e08c1139a3f (patch)
tree5e4cf0fa0db8038f3078dccfd533fa4765cf002f
parentb2d401f6a5959a5047176fa8398e5f27a363c7d9 (diff)
downloadrust-ceda03d3c7a17708f69ef2a91b369e08c1139a3f.tar.gz
rust-ceda03d3c7a17708f69ef2a91b369e08c1139a3f.zip
Add missing word "the".
-rw-r--r--src/doc/rustc/src/symbol-mangling/v0.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc/src/symbol-mangling/v0.md b/src/doc/rustc/src/symbol-mangling/v0.md
index 4f130191bfa..50075e72963 100644
--- a/src/doc/rustc/src/symbol-mangling/v0.md
+++ b/src/doc/rustc/src/symbol-mangling/v0.md
@@ -5,7 +5,7 @@ It has the following properties:
 
 - It provides an unambiguous string encoding for everything that can end up in a binary's symbol table.
 - It encodes information about generic parameters in a reversible way.
-- The mangled symbols are *decodable* such that demangled form should be easily identifiable as some concrete instance of e.g. a polymorphic function.
+- The mangled symbols are *decodable* such that the demangled form should be easily identifiable as some concrete instance of e.g. a polymorphic function.
 - It has a consistent definition that does not rely on pretty-printing certain language constructs.
 - Symbols can be restricted to only consist of the characters `A-Z`, `a-z`, `0-9`, and `_`.
   This helps ensure that it is platform-independent,