summaryrefslogtreecommitdiff
path: root/std/datetime/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'std/datetime/README.md')
-rw-r--r--std/datetime/README.md48
1 files changed, 24 insertions, 24 deletions
diff --git a/std/datetime/README.md b/std/datetime/README.md
index 9678ec434..49752f7a7 100644
--- a/std/datetime/README.md
+++ b/std/datetime/README.md
@@ -8,29 +8,29 @@ The following symbols from
[unicode LDML](http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table)
are supported:
-- `yyyy` - numeric year
-- `yy` - 2-digit year
-- `M` - numeric month
-- `MM` - 2-digit month
-- `d` - numeric day
-- `dd` - 2-digit day
-
-- `H` - numeric hour (0-23 hours)
-- `HH` - 2-digit hour (00-23 hours)
-- `h` - numeric hour (1-12 hours)
-- `hh` - 2-digit hour (01-12 hours)
-- `m` - numeric minute
-- `mm` - 2-digit minute
-- `s` - numeric second
-- `ss` - 2-digit second
-- `S` - 1-digit fractionalSecond
-- `SS` - 2-digit fractionalSecond
-- `SSS` - 3-digit fractionalSecond
-
-- `a` - dayPeriod, either `AM` or `PM`
-
-- `'foo'` - quoted literal
-- `./-` - unquoted literal
+- `yyyy` - numeric year.
+- `yy` - 2-digit year.
+- `M` - numeric month.
+- `MM` - 2-digit month.
+- `d` - numeric day.
+- `dd` - 2-digit day.
+
+- `H` - numeric hour (0-23 hours).
+- `HH` - 2-digit hour (00-23 hours).
+- `h` - numeric hour (1-12 hours).
+- `hh` - 2-digit hour (01-12 hours).
+- `m` - numeric minute.
+- `mm` - 2-digit minute.
+- `s` - numeric second.
+- `ss` - 2-digit second.
+- `S` - 1-digit fractionalSecond.
+- `SS` - 2-digit fractionalSecond.
+- `SSS` - 3-digit fractionalSecond.
+
+- `a` - dayPeriod, either `AM` or `PM`.
+
+- `'foo'` - quoted literal.
+- `./-` - unquoted literal.
### parse
@@ -78,7 +78,7 @@ dayOfYear(new Date("2019-03-11T03:24:00")); // output: 70
### weekOfYear
-Returns the ISO week number of the provided date (1-53)
+Returns the ISO week number of the provided date (1-53).
```ts
import { weekOfYear } from "https://deno.land/std/datetime/mod.ts";