From bfa9b62f427881a9214a4f386d6b4dff415c0324 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 26 Apr 2020 19:35:05 +0100 Subject: [PATCH] [Lexicon] fix typo "may is" -> "is" Reviewers: MaskRay Reviewed By: MaskRay Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D78878 --- docs/Lexicon.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Lexicon.rst b/docs/Lexicon.rst index 8df07845758..cf194eb0d1d 100644 --- a/docs/Lexicon.rst +++ b/docs/Lexicon.rst @@ -254,7 +254,7 @@ S **Safe Point** In garbage collection, it is necessary to identify `stack roots`_ so that reachability analysis may proceed. It may be infeasible to provide this - information for every instruction, so instead the information may is + information for every instruction, so instead the information is calculated only at designated safe points. With a copying collector, `derived pointers`_ must not be retained across safe points and `object pointers`_ must be reloaded from stack roots.