summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Piechotka <uzytkownik2@gmail.com>2011-02-16 16:06:55 +0000
committerMaciej Piechotka <uzytkownik2@gmail.com>2011-02-16 17:47:34 +0000
commit35c40b1873064c744fab646fbe8df6b12ba2c621 (patch)
treeb49ddbea6a1f2383cc2e763a58a7f6fa165bd709
parentce9930cdc3549109a05f1528f6c3f67640b74d77 (diff)
downloadlibgee-35c40b1873064c744fab646fbe8df6b12ba2c621.tar.gz
Read fix bold text valadoc markup
-rw-r--r--gee/deque.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/gee/deque.vala b/gee/deque.vala
index c864a8c..ad5d50e 100644
--- a/gee/deque.vala
+++ b/gee/deque.vala
@@ -32,7 +32,7 @@
* The Deque interface inherits from the {@link Queue} interface. Thus, to use
* a deque as a queue, you can equivalently use the folowing method set:
*
- * ||<)(> "Queue method" ||<)(> "Deque method" ||
+ * ||<)(> ''Queue method'' ||<)(> ''Deque method'' ||
* || {@link Queue.offer} || {@link offer_tail} ||
* || {@link Queue.peek} || {@link peek_head} ||
* || {@link Queue.poll} || {@link poll_head} ||
@@ -41,7 +41,7 @@
* To use a deque as a stack, just use the method set that acts at the head of
* the deque:
*
- * ||<)(> "Operation" ||<)(> "Deque method" ||
+ * ||<)(> ''Operation'' ||<)(> ''Deque method'' ||
* || push an element || {@link offer_head} ||
* || peek an element || {@link peek_head} ||
* || pop an element || {@link poll_head} ||