summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2012-05-30 00:40:23 +0000
committerChris Lattner <sabre@nondot.org>2012-05-30 00:40:23 +0000
commitef09705ee52de78f37ef05878ea6e277ebfe1555 (patch)
tree9890bbddd9f2aa8329d221dc0519941d822edf41 /docs
parent6e1b8128505711276a87e96f6bffb818b435cbd5 (diff)
downloadllvm-ef09705ee52de78f37ef05878ea6e277ebfe1555.tar.gz
llvm-ef09705ee52de78f37ef05878ea6e277ebfe1555.tar.bz2
llvm-ef09705ee52de78f37ef05878ea6e277ebfe1555.tar.xz
typo fix
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157661 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index ab0f9e1dca..14589b425d 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1050,7 +1050,7 @@ declare signext i8 @returns_signed_char()
value to the function. The attribute implies that a hidden copy of the
pointee
is made between the caller and the callee, so the callee is unable to
- modify the value in the callee. This attribute is only valid on LLVM
+ modify the value in the caller. This attribute is only valid on LLVM
pointer arguments. It is generally used to pass structs and arrays by
value, but is also valid on pointers to scalars. The copy is considered
to belong to the caller not the callee (for example,