about summary refs log tree commit diff stats
path: root/src/roster_list.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-02-23 00:50:58 +0000
committerJames Booth <boothj5@gmail.com>2015-02-23 00:50:58 +0000
commit7454bede8b67003ea17017fa4dd8a7b86f42d6b6 (patch)
tree825e945664cc6687eb5b7c77f29bd272b52a5734 /src/roster_list.c
parent95e7bd5a84b48f009e547d7017e925b3b9253d6f (diff)
parent2f4d66ea6e8b735678fc6946ca34864275b390e4 (diff)
downloadprofani-tty-7454bede8b67003ea17017fa4dd8a7b86f42d6b6.tar.gz
Merge branch 'master' into readline
Diffstat (limited to 'src/roster_list.c')
-rw-r--r--src/roster_list.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/roster_list.c b/src/roster_list.c
index 4ec5ea4f..b9a142cb 100644
--- a/src/roster_list.c
+++ b/src/roster_list.c
@@ -286,7 +286,7 @@ roster_get_contacts_by_presence(const char * const presence)
         }
     }
 
-    // resturn all contact structs
+    // return all contact structs
     return result;
 }
 
@@ -303,7 +303,7 @@ roster_get_contacts(void)
         result = g_slist_insert_sorted(result, value, (GCompareFunc)_compare_contacts);
     }
 
-    // resturn all contact structs
+    // return all contact structs
     return result;
 }
 
@@ -321,7 +321,7 @@ roster_get_contacts_online(void)
             result = g_slist_insert_sorted(result, value, (GCompareFunc)_compare_contacts);
     }
 
-    // resturn all contact structs
+    // return all contact structs
     return result;
 }
 
@@ -371,7 +371,7 @@ roster_get_nogroup(void)
         }
     }
 
-    // resturn all contact structs
+    // return all contact structs
     return result;
 }
 
@@ -395,7 +395,7 @@ roster_get_group(const char * const group)
         }
     }
 
-    // resturn all contact structs
+    // return all contact structs
     return result;
 }