From 3e63a9d52ca2052b55c1ac65b048b2051cc2c09b Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Fri, 13 Jul 2007 20:01:46 +0000
Subject: [PATCH] fix some bugs in the manual
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39822 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/LangRef.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 66dd9ca4b34..a94b6d1cadd 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -667,7 +667,7 @@ a power of 2.
-%G = constant float 1.0, section "foo", align 4
+@G = constant float 1.0, section "foo", align 4
@@ -1382,7 +1382,7 @@ and smaller aggregate constants.
Structure constants are represented with notation similar to structure
type definitions (a comma separated list of elements, surrounded by braces
({})). For example: "{ i32 4, float 17.0, i32* %G }",
- where "%G" is declared as "%G = external global i32". Structure constants
+ where "%G" is declared as "@G = external global i32". Structure constants
must have structure type, and the number and
types of elements must match those specified by the type.