summaryrefslogtreecommitdiff
path: root/gee
diff options
context:
space:
mode:
authorAnatol Pomozov <anatol.pomozov@gmail.com>2013-04-14 19:57:55 -0700
committerJürg Billeter <j@bitron.ch>2013-04-26 13:42:25 +0200
commit7d65305ba2d202afc622ace5aa53c99552bfeb64 (patch)
treed3dc71e78b9e95c07381c2090a807510df516693 /gee
parentf5a54052d1f7fb263bb8363934fabdc845f3a934 (diff)
downloadvala-7d65305ba2d202afc622ace5aa53c99552bfeb64.tar.gz
Fix spelling errors using 'codespell' tool
Diffstat (limited to 'gee')
-rw-r--r--gee/collection.vala2
-rw-r--r--gee/list.vala4
2 files changed, 3 insertions, 3 deletions
diff --git a/gee/collection.vala b/gee/collection.vala
index 6a652fcdf..76f568a1f 100644
--- a/gee/collection.vala
+++ b/gee/collection.vala
@@ -50,7 +50,7 @@ public abstract class Vala.Collection<G> : Iterable<G> {
public abstract bool add (G item);
/**
- * Removes the first occurence of an item from this collection. Must not
+ * Removes the first occurrence of an item from this collection. Must not
* be called on read-only collections.
*
* @param item the item to remove from the collection
diff --git a/gee/list.vala b/gee/list.vala
index e11399cba..d73028337 100644
--- a/gee/list.vala
+++ b/gee/list.vala
@@ -41,10 +41,10 @@ public abstract class Vala.List<G> : Collection<G> {
public abstract void set (int index, G item);
/**
- * Returns the index of the first occurence of the specified item in
+ * Returns the index of the first occurrence of the specified item in
* this list.
*
- * @return the index of the first occurence of the specified item, or
+ * @return the index of the first occurrence of the specified item, or
* -1 if the item could not be found
*/
public abstract int index_of (G item);