aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Precompiled-headers.md
diff options
context:
space:
mode:
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)