summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathis Rosenhauer <rosenhauer@dkrz.de>2016-04-14 12:03:19 +0200
committerMathis Rosenhauer <rosenhauer@dkrz.de>2016-04-14 12:03:19 +0200
commit8d7d42d7809cfce85818e314a2f399affa2babbc (patch)
treed3433d65cde74227d5435ba7df925b6761d97dee
parente0ebe0cfc179a99e2db18046cd0b9382134aece1 (diff)
downloadlibaec-8d7d42d7809cfce85818e314a2f399affa2babbc.tar.gz
libaec-8d7d42d7809cfce85818e314a2f399affa2babbc.tar.bz2
libaec-8d7d42d7809cfce85818e314a2f399affa2babbc.zip
Fix syntax highlighting
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index f5a39e6..15bd072 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ Suppose you have an array of 32 bit signed integers you want to
compress. The pointer pointing to the data shall be called `*source`,
output goes into `*dest`.
-```C++
+```c
#include <libaec.h>
...
@@ -166,7 +166,7 @@ members and constants.
Using decoding is very similar to encoding, only the meaning of input
and output is reversed.
-```C++
+```c
#include <libaec.h>
...