summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Piechotka <uzytkownik2@gmail.com>2017-02-22 23:29:05 -0800
committerMaciej Piechotka <uzytkownik2@gmail.com>2017-02-22 23:29:44 -0800
commit5ff71774e9c644410a1df0dba9765a4f68a03a08 (patch)
tree6a6e0bcde8b27be5edbbcb93c8643c06b03dd915
parented30714507e6099c5f56bd7469706e550a68bda8 (diff)
downloadlibgee-5ff71774e9c644410a1df0dba9765a4f68a03a08.tar.gz
Change @since to reflect the correct version
-rw-r--r--gee/traversable.vala12
1 files changed, 6 insertions, 6 deletions
diff --git a/gee/traversable.vala b/gee/traversable.vala
index bc6ae1d..3fa2e7d 100644
--- a/gee/traversable.vala
+++ b/gee/traversable.vala
@@ -451,7 +451,7 @@ public interface Gee.Traversable<G> : Object {
*
* @param pred Predicate to be called to check for matches
* @return The first element that matches or null
- * @since 0.18.2
+ * @since 0.19.91
*/
[CCode (ordering = 10)]
public virtual G? first_match (owned Predicate<G> pred) {
@@ -475,7 +475,7 @@ public interface Gee.Traversable<G> : Object {
*
* @param pred Predicate to be called to check for matches
* @return Whether there was a match or not
- * @since 0.18.2
+ * @since 0.19.91
*/
[CCode (ordering = 11)]
public virtual bool any_match (owned Predicate<G> pred) {
@@ -487,7 +487,7 @@ public interface Gee.Traversable<G> : Object {
*
* @param pred Predicate to be called to check for matches
* @return Whether all elements match or not
- * @since 0.18.2
+ * @since 0.19.91
*/
[CCode (ordering = 12)]
public virtual bool all_match (owned Predicate<G> pred) {
@@ -508,7 +508,7 @@ public interface Gee.Traversable<G> : Object {
*
* @param compare Function to be called for comparisons
* @return The item containing the max value.
- * @since 0.18.2
+ * @since 0.19.91
*/
[CCode (ordering = 13)]
public virtual G max (owned CompareDataFunc<G> compare) {
@@ -528,7 +528,7 @@ public interface Gee.Traversable<G> : Object {
*
* @param compare Function to be called for comparisons
* @return The item containing the min value.
- * @since 0.18.2
+ * @since 0.19.91
*/
[CCode (ordering = 14)]
public virtual G min (owned CompareDataFunc<G> compare) {
@@ -548,7 +548,7 @@ public interface Gee.Traversable<G> : Object {
*
* @param compare Comparison function
* @return A new iterator with the source elements sorted.
- * @since 0.18.2
+ * @since 0.19.91
*/
[CCode (ordering = 15)]
public virtual Iterator<G> order_by (owned CompareDataFunc<G>? compare = null) {