aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Compiler-properties.md
diff options
context:
space:
mode:
authorMathieu Duponchelle <MathieuDuponchelle@users.noreply.github.com>2017-05-05 23:11:32 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2017-05-05 23:16:23 +0200
commitae04624730491e2dff3cdb247775bc7839cbf350 (patch)
treeaaefd8f1463212a3acf32d79c22675651a19475b /docs/markdown/Compiler-properties.md
parent130d75bee543e212282e9cc8f29d967bae7375af (diff)
downloadmeson-ae04624730491e2dff3cdb247775bc7839cbf350.zip
meson-ae04624730491e2dff3cdb247775bc7839cbf350.tar.gz
meson-ae04624730491e2dff3cdb247775bc7839cbf350.tar.bz2
Compiler-properties.md: fix typo
Diffstat (limited to 'docs/markdown/Compiler-properties.md')
-rw-r--r--docs/markdown/Compiler-properties.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Compiler-properties.md b/docs/markdown/Compiler-properties.md
index d6ee823..50615a1 100644
--- a/docs/markdown/Compiler-properties.md
+++ b/docs/markdown/Compiler-properties.md
@@ -140,7 +140,7 @@ In older versions (<= 0.30) meson would error out if the size could not be deter
Does a function exist?
==
-Just having a header does say anything about its contents. Sometimes you need to explicitly check if some function exists. This is how we would check whether the function `somefunc` exists in header `someheader.h`
+Just having a header doesn't say anything about its contents. Sometimes you need to explicitly check if some function exists. This is how we would check whether the function `somefunc` exists in header `someheader.h`
```meson
if compiler.has_function('somefunc', prefix : '#include<someheader.h>')