]> granicus.if.org Git - clang/commitdiff
Fix "for all intensive purposes" to "for all intents and purposes".
authorNick Lewycky <nicholas@mxc.ca>
Sun, 14 Jun 2009 04:08:08 +0000 (04:08 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 14 Jun 2009 04:08:08 +0000 (04:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73323 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LanguageExtensions.html

index 55fb6158344f9d2c868bfcc22f41bb191b59f36d..c855a5057a62d74a6a7b76848822c218c89f6ab4 100644 (file)
@@ -376,11 +376,11 @@ positives due to false paths) by marking their own &quot;panic&quot; functions
 with this attribute.</p>
 
 <p>While useful, <tt>noreturn</tt> is not applicable in all cases. Sometimes
-there are special functions that for all intensive purposes should be considered
-panic functions (i.e., they are only called when an internal program error
-occurs) but may actually return so that the program can fail gracefully. The
-<tt>analyzer_noreturn</tt> attribute allows one to annotate such functions as
-being interpreted as &quot;no return&quot; functions by the analyzer (thus
+there are special functions that for all intents and purposes should be
+considered panic functions (i.e., they are only called when an internal program
+error occurs) but may actually return so that the program can fail gracefully.
+The <tt>analyzer_noreturn</tt> attribute allows one to annotate such functions
+as being interpreted as &quot;no return&quot; functions by the analyzer (thus
 pruning bogus paths) but will not affect compilation (as in the case of
 <tt>noreturn</tt>).</p>