diff options
author | Jesse Jackson <jsejcksn@users.noreply.github.com> | 2020-07-14 13:23:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 14:23:54 -0400 |
commit | d49a021539cbcfbaaa40fb1a85e0fef82f6ce4d7 (patch) | |
tree | 8430c9266c4e531527169330a5956a9448109193 /std/datetime/README.md | |
parent | f83d672ffad7afb1473bd4f9b9c645539064c620 (diff) |
refactor(std/datetime): improve weekOfYear (#6741)
Diffstat (limited to 'std/datetime/README.md')
-rw-r--r-- | std/datetime/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/datetime/README.md b/std/datetime/README.md index ae6b6f133..e9142f48a 100644 --- a/std/datetime/README.md +++ b/std/datetime/README.md @@ -40,7 +40,7 @@ currentDayOfYear(); // output: ** depends on when you run it :) ** ### weekOfYear -- `weekOfYear(date: Date)` - Returns the 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"; |