From: Reid Kleckner Date: Wed, 30 Apr 2014 18:50:03 +0000 (+0000) Subject: Fix typos in carries_dependency docs X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc1fce58faa4b0d789b9cfaeae1002504514d45c;p=clang Fix typos in carries_dependency docs git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207686 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/AttrDocs.td b/include/clang/Basic/AttrDocs.td index 7e923af812..7f057d0bf5 100644 --- a/include/clang/Basic/AttrDocs.td +++ b/include/clang/Basic/AttrDocs.td @@ -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. }]; }