]> git.0d.be Git - empathy.git/commitdiff
Fix typo in a comment
authorXavier Claessens <xclaesse@gmail.com>
Fri, 6 Mar 2009 11:53:45 +0000 (11:53 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Fri, 6 Mar 2009 11:53:45 +0000 (11:53 +0000)
From: Xavier Claessens <xclaesse@gmail.com>

svn path=/trunk/; revision=2623

libempathy/empathy-log-manager.c

index c663fe594d0bfc191df93e91c8740b95e0502447..e2423ebf2c2b098fb45bb68ca264d253a5f39d0e 100644 (file)
@@ -299,7 +299,7 @@ empathy_log_manager_get_filtered_messages (EmpathyLogManager *manager,
             }
           else if (log_manager_message_date_cmp (new->data, out->data) > 0)
             {
-              /* This message is newer than the older message we have in out
+              /* This message is newer than the oldest message we have in out
                * list. Remove the head of out list and insert this message */
               g_object_unref (out->data);
               out = g_list_delete_link (out, out);
@@ -308,7 +308,7 @@ empathy_log_manager_get_filtered_messages (EmpathyLogManager *manager,
             }
           else
             {
-              /* This message is older than the older message we have in out
+              /* This message is older than the oldest message we have in out
                * list. Drop it. */
               g_object_unref (new->data);
             }