summaryrefslogtreecommitdiff
path: root/docs/coding_conventions_c.md
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-01-30 22:00:56 +1100
committerGitHub <noreply@github.com>2021-01-30 22:00:56 +1100
commit92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d (patch)
tree6b9861b866e761c375b19f469e29a6fbc4690c2b /docs/coding_conventions_c.md
parent4c4b4b6e0d236637d4803b09f1ec9333aa532389 (diff)
[Docs] Use HTTPS for images and links where possible (#11695)
Diffstat (limited to 'docs/coding_conventions_c.md')
-rw-r--r--docs/coding_conventions_c.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/coding_conventions_c.md b/docs/coding_conventions_c.md
index f4e359611b..c4bace66cc 100644
--- a/docs/coding_conventions_c.md
+++ b/docs/coding_conventions_c.md
@@ -49,7 +49,7 @@ int foo(void) {
[Clang-format](https://clang.llvm.org/docs/ClangFormat.html) is part of LLVM and can automatically format your code for you, because ain't nobody got time to do it manually. We supply a configuration file for it that applies most of the coding conventions listed above. It will only change whitespace and newlines, so you will still have to remember to include optional braces yourself.
-Use the [full LLVM installer](http://llvm.org/builds/) to get clang-format on Windows, or use `sudo apt install clang-format` on Ubuntu.
+Use the [full LLVM installer](https://llvm.org/builds/) to get clang-format on Windows, or use `sudo apt install clang-format` on Ubuntu.
If you run it from the command-line, pass `-style=file` as an option and it will automatically find the .clang-format configuration file in the QMK root directory.