diff --git a/src/Nest/CommonOptions/DateFormat/DateFormat.cs b/src/Nest/CommonOptions/DateFormat/DateFormat.cs index 31741db89fc..50da3c61a06 100644 --- a/src/Nest/CommonOptions/DateFormat/DateFormat.cs +++ b/src/Nest/CommonOptions/DateFormat/DateFormat.cs @@ -5,7 +5,7 @@ public static class DateFormat { ///A formatter for the number of milliseconds since the epoch. Note, that this timestamp is subject to the limits of a Java Long.MIN_VALUE and Long.MAX_VALUE. - public const string epoch_millis = "epoch_mills"; + public const string epoch_millis = "epoch_millis"; ///A formatter for the number of seconds since the epoch. Note, that this timestamp is subject to the limits of a Java Long.MIN_VALUE and Long. MAX_VALUE divided by 1000 (the number of milliseconds in a second). public const string epoch_second = "epoch_second"; ///A basic formatter for a full date as four digit year, two digit month of year, and two digit day of month: yyyyMMdd.