summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/datetime.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2018-09-08 12:24:19 -0700
committerMichael Paquier <michael@paquier.xyz>2018-09-08 12:24:19 -0700
commit9226a3b89b004b3472d963442856206f0c249a53 (patch)
treee77673b9c74a2a512b4133a7b40b4aec265d7c9d /src/backend/utils/adt/datetime.c
parent361844fe561f6898d90a10382705ad968929a4b2 (diff)
Remove duplicated words split across lines in comments
This has been detected using some interesting tricks with sed, and the method used is mentioned in details in the discussion below. Author: Justin Pryzby Discussion: https://postgr.es/m/20180908013109.GB15350@telsasoft.com
Diffstat (limited to 'src/backend/utils/adt/datetime.c')
-rw-r--r--src/backend/utils/adt/datetime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/datetime.c b/src/backend/utils/adt/datetime.c
index 017cc1a7b15..46159de7958 100644
--- a/src/backend/utils/adt/datetime.c
+++ b/src/backend/utils/adt/datetime.c
@@ -1144,8 +1144,8 @@ DecodeDateTime(char **field, int *ftype, int nf,
* Is this a YMD or HMS specification, or a year number?
* YMD and HMS are required to be six digits or more, so
* if it is 5 digits, it is a year. If it is six or more
- * more digits, we assume it is YMD or HMS unless no date
- * and no time values have been specified. This forces 6+
+ * digits, we assume it is YMD or HMS unless no date and
+ * no time values have been specified. This forces 6+
* digit years to be at the end of the string, or to use
* the ISO date specification.
*/