1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

fix typo noticed by Duncan

llvm-svn: 76747
This commit is contained in:
Chris Lattner 2009-07-22 16:30:39 +00:00
parent a78abdc35e
commit c075ba7f73

View File

@ -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>