diff options
author | Devang Patel <dpatel@apple.com> | 2008-03-24 18:10:52 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-03-24 18:10:52 +0000 |
commit | 6dddba29d565992f9ea1515053476d0a4c009fe0 (patch) | |
tree | 77b8dbca2433fcd672a12e298796fb4146252faa | |
parent | dd84da51d35fa06922f488b45bbf6f33d3b577e5 (diff) | |
download | external_llvm-6dddba29d565992f9ea1515053476d0a4c009fe0.zip external_llvm-6dddba29d565992f9ea1515053476d0a4c009fe0.tar.gz external_llvm-6dddba29d565992f9ea1515053476d0a4c009fe0.tar.bz2 |
Fix typo. Clarify underlying message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48734 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/LangRef.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 8122d43..e44edf4 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1227,8 +1227,8 @@ type "{ i32, [0 x float]}", for example.</p> <p>The function type can be thought of as a function signature. It consists of a return type and a list of formal parameter types. The return type of a function type is a scalar type or a struct type. If the -return type is a struct type then all struct elements must be of a first -class type. Function types are usually used to build virtual function tables +return type is a struct type then all struct elements must be of first +class types. Function types are usually used to build virtual function tables (which are structures of pointers to functions), for indirect function calls, and when defining a function.</p> @@ -1264,8 +1264,8 @@ Variable argument functions can access their arguments with the <a </td> </tr><tr class="layout"> <td class="left"><tt>{i32, i32} (i32)</tt></td> - <td class="left">A function taking an <tt>i32></tt>, returning two values - <tt> i32 </tt> as an arggregate of type <tt>{ i32, i32 }</tt> + <td class="left">A function taking an <tt>i32></tt>, returning two + <tt> i32 </tt> values as an aggregate of type <tt>{ i32, i32 }</tt> </td> </tr> </table> |