From ceda03d3c7a17708f69ef2a91b369e08c1139a3f Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Sat, 13 May 2023 19:48:45 -0700 Subject: [PATCH] Add missing word "the". --- src/doc/rustc/src/symbol-mangling/v0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/rustc/src/symbol-mangling/v0.md b/src/doc/rustc/src/symbol-mangling/v0.md index 4f130191bfa7..50075e729634 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,