diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2020-01-18 11:04:19 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri@ouroboros.rocks> | 2020-01-18 11:04:19 +0100 |
commit | dc8e7a7e4739b10ffc1f4ef42e6898db63b35ee0 (patch) | |
tree | 8e6dcccc5bcfe11f5735b59765ff7738adec6852 /content/en/docs | |
parent | a4c051862893517db3d5dbf3a99163086c241838 (diff) | |
download | website-dc8e7a7e4739b10ffc1f4ef42e6898db63b35ee0.tar.gz website-dc8e7a7e4739b10ffc1f4ef42e6898db63b35ee0.zip |
content: Fix C formatting in contributions
Diffstat (limited to 'content/en/docs')
-rw-r--r-- | content/en/docs/Contributions/_index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/en/docs/Contributions/_index.md b/content/en/docs/Contributions/_index.md index 46d3fa7..37369fb 100644 --- a/content/en/docs/Contributions/_index.md +++ b/content/en/docs/Contributions/_index.md @@ -46,7 +46,7 @@ ptr = malloc(sizeof(*ptr) * len); - When checking for invalid pointers use -``` +```C if (ptr == NULL) ``` instead of |