diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-27 15:42:15 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-29 12:45:49 -0500 |
commit | e31ebda1d72d2b2182d3a3415939ea1761027428 (patch) | |
tree | a9142c20c8b68925c171e2d8231d320463960a85 /gtk/gtkbindings.c | |
parent | 48b359ea534457933fb43f62025c17db474b2611 (diff) | |
download | gtk+-e31ebda1d72d2b2182d3a3415939ea1761027428.tar.gz |
docs: don't escape entities in example code
https://bugzilla.gnome.org/show_bug.cgi?id=723119
Diffstat (limited to 'gtk/gtkbindings.c')
-rw-r--r-- | gtk/gtkbindings.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkbindings.c b/gtk/gtkbindings.c index 5cf894c5f7..5dcc968bcb 100644 --- a/gtk/gtkbindings.c +++ b/gtk/gtkbindings.c @@ -71,8 +71,8 @@ * |[ * @binding-set MoveCursor3 * { - * bind "<Control>Right" { "move-cursor" (visual-positions, 3, 0) }; - * bind "<Control>Left" { "move-cursor" (visual-positions, -3, 0) }; + * bind "<Control>Right" { "move-cursor" (visual-positions, 3, 0) }; + * bind "<Control>Left" { "move-cursor" (visual-positions, -3, 0) }; * } * GtkEntry * { @@ -94,8 +94,8 @@ * |[ * @binding-set MoveCursor3 * { - * bind "<Control>Right" { }; - * bind "<Control>Left" { }; + * bind "<Control>Right" { }; + * bind "<Control>Left" { }; * } * GtkEntry * { @@ -115,8 +115,8 @@ * |[ * @binding-set MoveCursor3 * { - * unbind "<Control>Right"; - * unbind "<Control>Left"; + * unbind "<Control>Right"; + * unbind "<Control>Left"; * } * GtkEntry * { |