]> granicus.if.org Git - clang/commitdiff
Fix typos in carries_dependency docs
authorReid Kleckner <reid@kleckner.net>
Wed, 30 Apr 2014 18:50:03 +0000 (18:50 +0000)
committerReid Kleckner <reid@kleckner.net>
Wed, 30 Apr 2014 18:50:03 +0000 (18:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207686 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/AttrDocs.td

index 7e923af812f1f153c04c29c76a49c8401e142d24..7f057d0bf5ec2f991e57f57ef7e5ac6c2f6f0cae 100644 (file)
@@ -56,14 +56,14 @@ def CarriesDependencyDocs : Documentation {
 The ``carries_dependency`` attribute specifies dependency propagation into and
 out of functions.
 
-When specified on a function or Objective-C method, the ``carries_depedency``
+When specified on a function or Objective-C method, the ``carries_dependency``
 attribute means that the return value carries a dependency out of the function, 
 so that the implementation need not constrain ordering upon return from that
 function. Implementations of the function and its caller may choose to preserve
 dependencies instead of emitting memory ordering instructions such as fences.
 
 Note, this attribute does not change the meaning of the program, but may result
-in generatation of more efficient code.
+in generation of more efficient code.
   }];
 }