summaryrefslogtreecommitdiff
path: root/gee
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@gnome.org>2014-10-04 13:42:05 -0500
committerMichael Catanzaro <mcatanzaro@gnome.org>2014-10-04 13:42:36 -0500
commitc3d18f5cd5bcf362fdf6cb23e60a52d4b5c7e775 (patch)
tree9686d5f43819e2932df8de4cbe80bcd6a08ae5c2 /gee
parent778d5f997d6da99b53bd2a933281bed85713d192 (diff)
downloadlibgee-c3d18f5cd5bcf362fdf6cb23e60a52d4b5c7e775.tar.gz
Fix a documentation typo
Diffstat (limited to 'gee')
-rw-r--r--gee/concurrentlist.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/gee/concurrentlist.vala b/gee/concurrentlist.vala
index 58bc022..8d6d5f9 100644
--- a/gee/concurrentlist.vala
+++ b/gee/concurrentlist.vala
@@ -25,7 +25,7 @@
* [[http://www.cse.yorku.ca/~ruppert/papers/lfll.pdf|Mikhail Fomitchev and Eric Ruppert paper ]].
*
* Many threads are allowed to operate on the same structure as well as modification
- * of structure during iteration is allowed. However the change may not be immidiatly
+ * of structure during iteration is allowed. However the change may not be immediately
* visible to other threads.
*/
public class Gee.ConcurrentList<G> : AbstractList<G> {