diff --git a/ChangeLog b/ChangeLog
index 7884ec6f..29891b75 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2014-06-11  Giuseppe Scrivano  <gscrivan@redhat.com>
 
+	* NEWS: Remove repeated word.
+
 	* po/POTFILES.in: Add lib/regcomp.c.
 
 	* configure.ac: Do not depend on always defined macros.
diff --git a/NEWS b/NEWS
index 2922cde2..85c0f724 100644
--- a/NEWS
+++ b/NEWS
@@ -684,7 +684,7 @@ ASCII type transfer:
 
     wget "ftp://ftp.somewhere.com/welcome.msg;type=a"
 
-** `--help' and `--version' options have been redone to to conform to
+** `--help' and `--version' options have been redone to conform to
 standards set by other GNU utilities.
 
 ** Wget should now be compilable under MS Windows environment.  MS
diff --git a/src/ChangeLog b/src/ChangeLog
index 88837a02..0a4f4dcb 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
 2014-06-11  Giuseppe Scrivano  <gscrivan@redhat.com>
 
+	* cmpt.c (day_of_the_week): Remove repeated word in a comment.
+	* utils.c: Remove repeated word in a comment.
+
 	* gnutls.c: Do not include <assert.h>.
 
 	* connect.c: Do not depend on always defined macros.
diff --git a/src/cmpt.c b/src/cmpt.c
index 8ca3b038..a49103e9 100644
--- a/src/cmpt.c
+++ b/src/cmpt.c
@@ -372,7 +372,7 @@ static void
 day_of_the_week (struct tm *tm)
 {
   /* We know that January 1st 1970 was a Thursday (= 4).  Compute the
-     the difference between this data in the one on TM and so determine
+     difference between this data in the one on TM and so determine
      the weekday.  */
   int corr_year = 1900 + tm->tm_year - (tm->tm_mon < 2);
   int wday = (-473
diff --git a/src/utils.c b/src/utils.c
index ebce0b83..0be07701 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -2168,7 +2168,7 @@ base64_encode (const void *data, size_t length, char *dest)
 
    Since DEST is assumed to contain binary data, it is not
    NUL-terminated.  The function returns the length of the data
-   written to TO.  -1 is returned in case of error caused by malformed
+   written to "TO".  -1 is returned in case of error caused by malformed
    base64 input.
 
    This function originates from Free Recode.  */