summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/design/coding-conventions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/design/coding-conventions.md b/docs/design/coding-conventions.md
index e21538e9c..f730a25d5 100644
--- a/docs/design/coding-conventions.md
+++ b/docs/design/coding-conventions.md
@@ -124,7 +124,7 @@ In general, includes should be grouped as follows:
* Finally, any includes for other features in the project
Within each group, includes should be sorted alphabetically.
-If this breaks because of ordering issues for system/OS/third-party headers (e.g., `<Windows.h>` must be included before `<GL/GL.h>`), then ideally those includes should be mediated by a Slang-project-internal header that features can include.
+If this breaks because of ordering issues for system/OS/third-party headers (e.g., `<windows.h>` must be included before `<GL/GL.h>`), then ideally those includes should be mediated by a Slang-project-internal header that features can include.
Namespaces
----------