bindings: Fix stray semicolons in CSS example for bindings

Semicolon shouldn't be at the end of binding set
This commit is contained in:
Michael Wood 2013-11-25 15:59:41 +00:00
parent 1d2a070254
commit 89f78a718b

View File

@ -73,10 +73,10 @@
* {
* bind "<Control>Right" { "move-cursor" (visual-positions, 3, 0) };
* bind "<Control>Left" { "move-cursor" (visual-positions, -3, 0) };
* };
* }
* GtkEntry
* {
* gtk-key-bindings: MoveCursor3
* gtk-key-bindings: MoveCursor3;
* }
* </programlisting></informalexample>
* </para>
@ -96,10 +96,10 @@
* {
* bind "&lt;Control&gt;Right" { };
* bind "&lt;Control&gt;Left" { };
* };
* }
* GtkEntry
* {
* gtk-key-bindings: MoveCursor3
* gtk-key-bindings: MoveCursor3;
* }
* </programlisting></informalexample>
* The above example will not have the desired effect of causing
@ -117,10 +117,10 @@
* {
* unbind "&lt;Control&gt;Right";
* unbind "&lt;Control&gt;Left";
* };
* }
* GtkEntry
* {
* gtk-key-bindings: MoveCursor3
* gtk-key-bindings: MoveCursor3;
* }
* </programlisting></informalexample>
* Now, GTK+ will find a match when looking up "&lt;Control&gt;Right"