aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2008-05-21 18:30:15 +0000
committerGabor Greif <ggreif@gmail.com>2008-05-21 18:30:15 +0000
commit97e378e554ddb42bcd755eb6ec4a602539bd6be0 (patch)
tree72e372106d778cfc54670e316eb3c4b0907bdf09 /docs/tutorial
parent03dace82f416687f3752b99c7caef8d4519637a1 (diff)
downloadexternal_llvm-97e378e554ddb42bcd755eb6ec4a602539bd6be0.zip
external_llvm-97e378e554ddb42bcd755eb6ec4a602539bd6be0.tar.gz
external_llvm-97e378e554ddb42bcd755eb6ec4a602539bd6be0.tar.bz2
adapt to new API
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51387 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/LangImpl3.html2
-rw-r--r--docs/tutorial/OCamlLangImpl3.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/LangImpl3.html b/docs/tutorial/LangImpl3.html
index f77f8f8..3228e01 100644
--- a/docs/tutorial/LangImpl3.html
+++ b/docs/tutorial/LangImpl3.html
@@ -166,7 +166,7 @@ internally (<tt>APFloat</tt> has the capability of holding floating point
constants of <em>A</em>rbitrary <em>P</em>recision). This code basically just
creates and returns a <tt>ConstantFP</tt>. 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(..)".</p>
+uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::Create(..)".</p>
<div class="doc_code">
<pre>
diff --git a/docs/tutorial/OCamlLangImpl3.html b/docs/tutorial/OCamlLangImpl3.html
index b396ef0..0ff0703 100644
--- a/docs/tutorial/OCamlLangImpl3.html
+++ b/docs/tutorial/OCamlLangImpl3.html
@@ -148,7 +148,7 @@ internally (<tt>APFloat</tt> has the capability of holding floating point
constants of <em>A</em>rbitrary <em>P</em>recision). This code basically just
creates and returns a <tt>ConstantFP</tt>. 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(..)".</p>
+uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::Create(..)".</p>
<div class="doc_code">
<pre>