summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Engestrom <eric@engestrom.ch>2020-04-07 15:38:30 +0200
committerMarge Bot <eric+marge@anholt.net>2020-05-21 14:23:41 +0000
commitbf97150d45c9642daadedad05039209e28abe4d1 (patch)
treeaf82a152a25f1ab6a94be70323f77d992025ac9d /include
parent089b0310efb6d93bc78bb4b1b0d5e7494db15e27 (diff)
no_extern_c.h: fix typo in comment
Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5145>
Diffstat (limited to 'include')
-rw-r--r--include/no_extern_c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/no_extern_c.h b/include/no_extern_c.h
index f79602c0303..f2f14aafab5 100644
--- a/include/no_extern_c.h
+++ b/include/no_extern_c.h
@@ -27,7 +27,7 @@
/*
* Including system's headers inside `extern "C" { ... }` is not safe, as system
* headers may have C++ code in them, and C++ code inside extern "C"
- * leads to syntatically incorrect code.
+ * leads to syntactically incorrect code.
*
* This is because putting code inside extern "C" won't make __cplusplus define
* go away, that is, the system header being included thinks is free to use C++