[libgee] Fix documentation comments



commit cf5dccbdce6c8649b44f042b237ad07975752ba6
Author: Florian Brosch <flo brosch gmail com>
Date:   Fri Apr 2 20:59:49 2010 +0200

    Fix documentation comments

 gee/treeset.vala |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gee/treeset.vala b/gee/treeset.vala
index 62ff8f3..b0672d1 100644
--- a/gee/treeset.vala
+++ b/gee/treeset.vala
@@ -446,28 +446,28 @@ public class Gee.TreeSet<G> : AbstractSet<G>, SortedSet<G> {
 	}
 
 	/**
-	 * @inheritDoc
+	 * { inheritDoc}
 	 */
 	public G? lower (G item) {
 		return lift_null_get (find_lower (item));
 	}
 
 	/**
-	 * @inheritDoc
+	 * { inheritDoc}
 	 */
 	public G? higher (G item) {
 		return lift_null_get (find_higher (item));
 	}
 
 	/**
-	 * @inheritDoc
+	 * { inheritDoc}
 	 */
 	public G? floor (G item) {
 		return lift_null_get (find_floor (item));
 	}
 
 	/**
-	 * @inheritDoc
+	 * { inheritDoc}
 	 */
 	public G? ceil (G item) {
 		return lift_null_get (find_ceil (item));



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]