diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-22 16:30:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-22 16:30:39 +0000 |
commit | 6ead32765a0ae79603d8dbb3d0ec42cf3e15de6f (patch) | |
tree | b652bfaba6d3cf90da3341235ace5619b3891c36 | |
parent | 596cbd3ab62d3db949fb726938709b88960bcc93 (diff) | |
download | external_llvm-6ead32765a0ae79603d8dbb3d0ec42cf3e15de6f.zip external_llvm-6ead32765a0ae79603d8dbb3d0ec42cf3e15de6f.tar.gz external_llvm-6ead32765a0ae79603d8dbb3d0ec42cf3e15de6f.tar.bz2 |
fix typo noticed by Duncan
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76747 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/CodingStandards.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html index 6e1c240..8d46000 100644 --- a/docs/CodingStandards.html +++ b/docs/CodingStandards.html @@ -682,7 +682,7 @@ More importantly, it <em>forces you to pick a name</em> for the function, and forces you to write a comment for it. In this silly example, this doesn't add much value. However, if the condition is complex, this can make it a lot easier for the reader to understand the code that queries for this predicate. Instead -of being faced with the in-line details of we check to see if the BarList +of being faced with the in-line details of how we check to see if the BarList contains a foo, we can trust the function name and continue reading with better locality.</p> |