diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-03 03:49:51 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-03 03:49:51 -0400 |
commit | 78ae9f627caa96bbb1831eb519333ae87e0e8dc7 (patch) | |
tree | 704fb5729448a5bb3e9f0632cc53a9e074b90d35 /share/docs | |
parent | 5521347322892f4997644925acfe1edf2c6b0bbf (diff) |
docs: liboda: Fix markdown codeblock highlight
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'share/docs')
-rw-r--r-- | share/docs/lib/liboda.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/docs/lib/liboda.md b/share/docs/lib/liboda.md index f526ca9..ee82dc0 100644 --- a/share/docs/lib/liboda.md +++ b/share/docs/lib/liboda.md @@ -144,7 +144,7 @@ structure defined in ``liboda/oda.h``. Additionally, in order for any ODA library calls to be made, the compositor must initialize the library with ``oda_init()`` like in the following example: -``` +```c #include <liboda/oda.h> struct oda_state state; @@ -163,7 +163,7 @@ is returned (see ``sys/errno.h``). A compositor may request windows from the ODA by using ``oda_reqwin()`` like in the following example: -``` +```c #include <liboda/oda.h> ... |