summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRan Benita <ran234@gmail.com>2014-09-21 00:56:33 +0300
committerRan Benita <ran234@gmail.com>2014-09-21 00:56:33 +0300
commit51ae4a172a86e6f54026ec9ac6b15c2d8cded57b (patch)
treec7dea219fa6e9197078688bbbcc3600a50c4c71f /doc
parentd8a4f52cb95d989b48f39ce13c18fe85cda4e9e1 (diff)
downloadxorg-lib-libxkbcommon-51ae4a172a86e6f54026ec9ac6b15c2d8cded57b.tar.gz
quick-guide: fix Java-esque array syntax
Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/quick-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/quick-guide.md b/doc/quick-guide.md
index ca62be1..92f937c 100644
--- a/doc/quick-guide.md
+++ b/doc/quick-guide.md
@@ -123,7 +123,7 @@ from it. Given a keycode for a key, we can get its keysym:
We can see which keysym we got, and get its name:
~~~{.c}
- char[64] keysym_name;
+ char keysym_name[64];
if (keysym == XKB_KEY_Space)
<got a space>