Skip to content

Commit

Permalink
chore(docs): Fix typo in README
Browse files Browse the repository at this point in the history
This reverts commit 9222f6d.
  • Loading branch information
gnarea committed Feb 2, 2023
1 parent 9222f6d commit 7e462d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ import { IDatePeriod, dnssecLookUp } from '@relaycorp/dnssec';
import { subHours } from 'date-fns';

const now = new Date();
const datePeriod: IDatePeriod = { start: now, end: subHours(now, 1) };
const datePeriod: IDatePeriod = { start: subHours(now, 1), end: now };
dnssecLookUp(QUESTION, RESOLVER, { dateOrPeriod: datePeriod });
```

Expand Down

0 comments on commit 7e462d7

Please sign in to comment.