Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger authored Aug 31, 2022
1 parent 2339c42 commit 4e2eff0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ TemporalHelpers.ISO.plainTimeStringsAmbiguous().forEach((string) => {

// None of these should throw without a T prefix, because they are unambiguously time strings:
TemporalHelpers.ISO.plainTimeStringsUnambiguous().forEach(
(arg) =>instance.toZonedDateTime({ plainTime: arg, timeZone: "UTC" }));
(arg) => instance.toZonedDateTime({ plainTime: arg, timeZone: "UTC" }));
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ TemporalHelpers.ISO.plainTimeStringsAmbiguous().forEach((string) => {

// None of these should throw without a T prefix, because they are unambiguously time strings:
TemporalHelpers.ISO.plainTimeStringsUnambiguous().forEach(
(arg) =>instance.withPlainTime(arg));
(arg) => instance.withPlainTime(arg));
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ TemporalHelpers.ISO.plainTimeStringsAmbiguous().forEach((string) => {

// None of these should throw without a T prefix, because they are unambiguously time strings:
TemporalHelpers.ISO.plainTimeStringsUnambiguous().forEach(
(arg) =>instance.equals(arg));
(arg) => instance.equals(arg));
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ TemporalHelpers.ISO.plainTimeStringsAmbiguous().forEach((string) => {

// None of these should throw without a T prefix, because they are unambiguously time strings:
TemporalHelpers.ISO.plainTimeStringsUnambiguous().forEach(
(arg) =>instance.since(arg));
(arg) => instance.since(arg));
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ TemporalHelpers.ISO.plainTimeStringsAmbiguous().forEach((string) => {

// None of these should throw without a T prefix, because they are unambiguously time strings:
TemporalHelpers.ISO.plainTimeStringsUnambiguous().forEach(
(arg) =>instance.until(arg));
(arg) => instance.until(arg));
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ TemporalHelpers.ISO.plainTimeStringsAmbiguous().forEach((string) => {

// None of these should throw without a T prefix, because they are unambiguously time strings:
TemporalHelpers.ISO.plainTimeStringsUnambiguous().forEach(
(arg) =>instance.withPlainTime(arg));
(arg) => instance.withPlainTime(arg));

0 comments on commit 4e2eff0

Please sign in to comment.