aboutsummaryrefslogtreecommitdiff
path: root/docs/CODE_STYLE.md
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-11-09 09:56:13 +0100
committerDaniel Stenberg <daniel@haxx.se>2016-11-09 09:56:13 +0100
commit1299df6868e48ffbec747670017f74d18b1bcc9a (patch)
treeec54b4610d4cd224ebf1392849154891b5f46e93 /docs/CODE_STYLE.md
parent397abc8b4436c7f3d98d09ba40c4d2c2eb9a2f33 (diff)
CODE_STYLE.md: link to INTERNALS.md correctly
Diffstat (limited to 'docs/CODE_STYLE.md')
-rw-r--r--docs/CODE_STYLE.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/CODE_STYLE.md b/docs/CODE_STYLE.md
index a12bf57cd..ba5f71026 100644
--- a/docs/CODE_STYLE.md
+++ b/docs/CODE_STYLE.md
@@ -9,8 +9,8 @@ style is more important than individual contributors having their own personal
tastes satisfied.
Our C code has a few style rules. Most of them are verified and upheld by the
-lib/checksrc.pl script. Invoked with `make checksrc` or even by default by the
-build system when built after `./configure --enable-debug` has been used.
+`lib/checksrc.pl` script. Invoked with `make checksrc` or even by default by
+the build system when built after `./configure --enable-debug` has been used.
It is normally not a problem for anyone to follow the guidelines, as you just
need to copy the style already used in the source code and there are no
@@ -28,7 +28,8 @@ other places of the code, just that the names should be logical,
understandable and be named according to what they're used for. File-local
functions should be made static. We like lower case names.
-See the INTERNALS document on how we name non-exported library-global symbols.
+See the [INTERNALS](INTERNALS.md) document on how we name non-exported
+library-global symbols.
## Indenting