From: Gabor Greif
Date: Wed, 21 May 2008 18:30:15 +0000 (+0000)
Subject: adapt to new API
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=97e378e554ddb42bcd755eb6ec4a602539bd6be0;p=oota-llvm.git
adapt to new API
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51387 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/tutorial/LangImpl3.html b/docs/tutorial/LangImpl3.html
index f77f8f83032..3228e01da12 100644
--- a/docs/tutorial/LangImpl3.html
+++ b/docs/tutorial/LangImpl3.html
@@ -166,7 +166,7 @@ internally (APFloat has the capability of holding floating point
constants of Arbitrary Precision). This code basically just
creates and returns a ConstantFP. Note that in the LLVM IR
that constants are all uniqued together and shared. For this reason, the API
-uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::create(..)".
+uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::Create(..)".
diff --git a/docs/tutorial/OCamlLangImpl3.html b/docs/tutorial/OCamlLangImpl3.html
index b396ef07ae5..0ff0703d18c 100644
--- a/docs/tutorial/OCamlLangImpl3.html
+++ b/docs/tutorial/OCamlLangImpl3.html
@@ -148,7 +148,7 @@ internally (APFloat has the capability of holding floating point
constants of Arbitrary Precision). This code basically just
creates and returns a ConstantFP. Note that in the LLVM IR
that constants are all uniqued together and shared. For this reason, the API
-uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::create(..)".
+uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::Create(..)".