summaryrefslogtreecommitdiff
path: root/gee
diff options
context:
space:
mode:
authorMaciej Piechotka <uzytkownik2@gmail.com>2013-11-18 00:22:43 +0100
committerMaciej Piechotka <uzytkownik2@gmail.com>2013-12-25 22:33:19 +0100
commitf9ae8bbb98706c851518fc7f8335a57048a6da54 (patch)
tree7e4502b7778fd74e1167b3181381bc8c58e6b45a /gee
parent33d862fa4e149b713ebf6cba4da1e246d74770b6 (diff)
downloadlibgee-f9ae8bbb98706c851518fc7f8335a57048a6da54.tar.gz
Fix the documentation to use constant
Diffstat (limited to 'gee')
-rw-r--r--gee/queue.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/gee/queue.vala b/gee/queue.vala
index 3658e67..90f3cc0 100644
--- a/gee/queue.vala
+++ b/gee/queue.vala
@@ -52,12 +52,12 @@ public interface Gee.Queue<G> : Collection<G> {
public static const int UNBOUNDED_CAPACITY = -1;
/**
- * The capacity of this queue (or ``null`` if capacity is not bound).
+ * The capacity of this queue (or ``UNBOUNDED_CAPACITY`` if capacity is not bound).
*/
public abstract int capacity { get; }
/**
- * The remaining capacity of this queue (or ``null`` if capacity is not
+ * The remaining capacity of this queue (or ``UNBOUNDED_CAPACITY`` if capacity is not
* bound).
*/
public abstract int remaining_capacity { get; }