]> granicus.if.org Git - llvm/commitdiff
[docs][FIX] Add missing word to documentation in terms of SCCs
authorJohannes Doerfert <jdoerfert@anl.gov>
Wed, 31 Jul 2019 16:48:42 +0000 (16:48 +0000)
committerJohannes Doerfert <jdoerfert@anl.gov>
Wed, 31 Jul 2019 16:48:42 +0000 (16:48 +0000)
In the approval of D65299, commited as rL367440, I mentioned that my
proposed wording was lacking the word "maximal". It is added now for
correctness.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@367445 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LoopTerminology.rst

index 9229a24820e314257b9e76da11f866e9f27b247d..7306167de65cd96d8be0b41ce98e8c0d95b13e36 100644 (file)
@@ -12,7 +12,7 @@ Loops are a core concept in any optimizer.  This page spells out some
 of the common terminology used within LLVM code to describe loop
 structures.
 
-First, let's start with the basics.  In LLVM, a Loop is a set of basic
+First, let's start with the basics. In LLVM, a Loop is a maximal set of basic
 blocks that form a strongly connected component (SCC) in the Control
 Flow Graph (CFG) where there exists a dedicated entry/header block that
 dominates all other blocks within the loop. Thus, without leaving the