[BuildingAJIT] Fix a function signature in the documentation.
llvm-svn: 344705
diff --git a/llvm/docs/tutorial/BuildingAJIT1.rst b/llvm/docs/tutorial/BuildingAJIT1.rst
index f1e93bf..1342c10 100644
--- a/llvm/docs/tutorial/BuildingAJIT1.rst
+++ b/llvm/docs/tutorial/BuildingAJIT1.rst
@@ -65,8 +65,8 @@
compiler does. To support that aim our initial, bare-bones JIT API will have
just two functions:
-1. Handle addModule(Module &M) -- Make the given IR module available for
- execution.
+1. void addModule(std::unique_ptr<Module> M) -- Make the given IR module
+ available for execution.
2. Expected<JITSymbol> lookup() -- Search for pointers to
symbols (functions or variables) that have been added to the JIT.