Read fix bold text valadoc markup
authorMaciej Piechotka <uzytkownik2@gmail.com>
Wed, 16 Feb 2011 16:06:55 +0000 (16:06 +0000)
committerMaciej Piechotka <uzytkownik2@gmail.com>
Wed, 16 Feb 2011 16:06:55 +0000 (16:06 +0000)
gee/deque.vala

index c864a8c..ad5d50e 100644 (file)
@@ -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}     ||