aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Precompiled-headers.md
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-02 21:03:27 -0400
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-03 16:20:53 -0400
commitf3ad633f55b8f2ac744924ca38018c41ee035f1e (patch)
tree5c61bf27c870ecb53b24bf6708d74b7977da542d /docs/markdown/Precompiled-headers.md
parentb80d40c287789ec0cb430842923a0254c86a6150 (diff)
downloadmeson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.zip
meson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.tar.gz
meson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.tar.bz2
doc: Fix several minor typos.
Diffstat (limited to 'docs/markdown/Precompiled-headers.md')
-rw-r--r--docs/markdown/Precompiled-headers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Precompiled-headers.md b/docs/markdown/Precompiled-headers.md
index 182212d..8498612 100644
--- a/docs/markdown/Precompiled-headers.md
+++ b/docs/markdown/Precompiled-headers.md
@@ -44,7 +44,7 @@ executable('multilang', sources : srclist,
Using precompiled headers with MSVC
--
-MSVC is a bit trickier, because in addition to the header file, it also requires a correspongind source file. If your header is called `foo_pch.h`, the corresponding source file is usually called `foo_pch.cpp` and it resides in the same `pch` subdirectory as the header. Its contents are this:
+MSVC is a bit trickier, because in addition to the header file, it also requires a corresponding source file. If your header is called `foo_pch.h`, the corresponding source file is usually called `foo_pch.cpp` and it resides in the same `pch` subdirectory as the header. Its contents are this:
```cpp
#if !defined(_MSC_VER)