diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-02-28 22:12:54 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-02-28 22:12:54 +0000 |
commit | d163e2dc8a35171f9e4c8a39f5f7df62b07af858 (patch) | |
tree | 1173cd6e628395a146286ac534f87553b4bb703c | |
parent | bdf61ee3fdaa583b2d2f050352c438fad1a3a247 (diff) | |
download | external_llvm-d163e2dc8a35171f9e4c8a39f5f7df62b07af858.zip external_llvm-d163e2dc8a35171f9e4c8a39f5f7df62b07af858.tar.gz external_llvm-d163e2dc8a35171f9e4c8a39f5f7df62b07af858.tar.bz2 |
Fix grammaro.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65727 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/LangRef.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 5329a01..83ea026 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2142,7 +2142,7 @@ return value.</p> <pre> ret i32 5 <i>; Return an integer value of 5</i> ret void <i>; Return from a void function</i> - ret { i32, i8 } { i32 4, i8 2 } <i>; Return an struct of values 4 and 2</i> + ret { i32, i8 } { i32 4, i8 2 } <i>; Return a struct of values 4 and 2</i> </pre> <p>Note that the code generator does not yet fully support large |