Fix a typo
authorSylvestre Ledru <sylvestre@debian.org>
Mon, 26 Jun 2017 02:45:08 +0000 (02:45 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Mon, 26 Jun 2017 02:45:08 +0000 (02:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@306261 91177308-0d34-0410-b5e6-96231b3b80d8

docs/MemorySanitizer.rst

index 8088ecdf561fd1c620e647bfc28394ae36893f84..5bb19ed8a509128df0680399bd53f022339fd4f7 100644 (file)
@@ -27,7 +27,7 @@ executable, so make sure to use ``clang`` (not ``ld``) for the final
 link step. When linking shared libraries, the MemorySanitizer run-time
 is not linked, so ``-Wl,-z,defs`` may cause link errors (don't use it
 with MemorySanitizer). To get a reasonable performance add ``-O1`` or
-higher. To get meaninful stack traces in error messages add
+higher. To get meaningful stack traces in error messages add
 ``-fno-omit-frame-pointer``. To get perfect stack traces you may need
 to disable inlining (just use ``-O1``) and tail call elimination
 (``-fno-optimize-sibling-calls``).