From: Devang Patel Date: Mon, 24 Mar 2008 18:10:52 +0000 (+0000) Subject: Fix typo. Clarify underlying message. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3a5bff8d04dd028cf3e0bbd3c28069c03a501f5a;p=oota-llvm.git Fix typo. Clarify underlying message. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48734 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 8122d4356cd..e44edf421fd 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1227,8 +1227,8 @@ type "{ i32, [0 x float]}", for example.

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.

@@ -1264,8 +1264,8 @@ Variable argument functions can access their arguments with the {i32, i32} (i32) - A function taking an i32>, returning two values - i32 as an arggregate of type { i32, i32 } + A function taking an i32>, returning two + i32 values as an aggregate of type { i32, i32 }