Update the ocaml docs to work with LLVMContext.
llvm-svn: 79431
diff --git a/llvm/docs/tutorial/OCamlLangImpl5.html b/llvm/docs/tutorial/OCamlLangImpl5.html
index dea243f..6c77e9f 100644
--- a/llvm/docs/tutorial/OCamlLangImpl5.html
+++ b/llvm/docs/tutorial/OCamlLangImpl5.html
@@ -1200,8 +1200,9 @@
exception Error of string
-let the_module = create_module "my cool jit"
-let builder = builder ()
+let context = global_context ()
+let the_module = create_module context "my cool jit"
+let builder = builder context
let named_values:(string, llvalue) Hashtbl.t = Hashtbl.create 10
let rec codegen_expr = function