aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/howtox.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/howtox.md
parentb80d40c287789ec0cb430842923a0254c86a6150 (diff)
downloadmeson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.zip
meson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.tar.gz
meson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.tar.bz2
doc: Fix several minor typos.
Diffstat (limited to 'docs/markdown/howtox.md')
-rw-r--r--docs/markdown/howtox.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md
index fbe1556..2c72e28 100644
--- a/docs/markdown/howtox.md
+++ b/docs/markdown/howtox.md
@@ -19,7 +19,7 @@ project('myproj', 'c', 'cpp',
## Enable threads
-Lots of people seem to do this manually with `find_library('phtread')` or something similar. Do not do that. It is not portable. Instead do this.
+Lots of people seem to do this manually with `find_library('pthread')` or something similar. Do not do that. It is not portable. Instead do this.
```meson
thread_dep = dependency('threads')