Fix typo in cmake example docs
authorRenato Golin <renato.golin@linaro.org>
Tue, 10 Feb 2015 14:15:58 +0000 (14:15 +0000)
committerRenato Golin <renato.golin@linaro.org>
Tue, 10 Feb 2015 14:15:58 +0000 (14:15 +0000)
Patch by Vinicius Tinti.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228690 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CMake.rst

index 6c94e8d416487dd509aa796527846bf805d3e960..03a809024e1f3804098f392098eb6549c8b6378c 100644 (file)
@@ -429,7 +429,7 @@ and uses them to build a simple application ``simple-tool``.
   add_definitions(${LLVM_DEFINITIONS})
 
   # Now build our tools
-  add_excutable(simple-tool tool.cpp)
+  add_executable(simple-tool tool.cpp)
 
   # Find the libraries that correspond to the LLVM components
   # that we wish to use