diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-01-27 06:59:29 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-01-27 06:59:29 +0000 |
commit | a018c27fa59cb9fbd04629703c882ed560be8c99 (patch) | |
tree | 05b9ce7481973e1c0e5437be85101e0074344bd7 /www | |
parent | 12b9434d5bf801e24242b1f6fd04899f8a7fa92c (diff) |
Fix a few typos in HTML documentation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124361 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www')
-rw-r--r-- | www/analyzer/annotations.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/analyzer/annotations.html b/www/analyzer/annotations.html index b2182eb934..a08573a4c1 100644 --- a/www/analyzer/annotations.html +++ b/www/analyzer/annotations.html @@ -364,11 +364,11 @@ its availability, as it is not available in earlier versions of the analyzer:</p <pre class="code_example"> #ifndef __has_feature -#define __has_Feature(x) 0 // Compatibility with non-clang compilers. +#define __has_feature(x) 0 // Compatibility with non-clang compilers. #endif #ifndef NS_CONSUMES_SELF -#if __has_feature((attribute_ns_consumes_self)) +<span class="code_highlight">#if __has_feature((attribute_ns_consumes_self))</span> #else #define NS_CONSUMES_SELF #endif @@ -376,7 +376,7 @@ its availability, as it is not available in earlier versions of the analyzer:</p @interface MyClass : NSObject - initWith:(MyClass *)x; -- nonstandardInitWith:(MyClass *)x NS_CONSUMES_SELF NS_RETURNS_RETAINED; +- nonstandardInitWith:(MyClass *)x <span class="code_highlight">NS_CONSUMES_SELF</span> NS_RETURNS_RETAINED; @end </pre> |