Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vpaturet committed May 7, 2024
1 parent 82b853a commit dfe36ef
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ public static GraphQLObjectType create(
"numberOfDeparturesPerLineAndDestinationDisplay"
);
int timeRangeInput = getPositiveNonNullIntegerArgument(environment, "timeRange");
Duration timeRage = Duration.ofSeconds(timeRangeInput);
Duration timeRange = Duration.ofSeconds(timeRangeInput);

MonoOrMultiModalStation monoOrMultiModalStation = environment.getSource();
JourneyWhiteListed whiteListed = new JourneyWhiteListed(environment);
Expand All @@ -375,7 +375,7 @@ public static GraphQLObjectType create(
getTripTimesForStop(
singleStop,
startTime,
timeRage,
timeRange,
arrivalDeparture,
includeCancelledTrips,
numberOfDepartures,
Expand Down Expand Up @@ -420,7 +420,7 @@ public static GraphQLObjectType create(
public static Stream<TripTimeOnDate> getTripTimesForStop(
StopLocation stop,
Instant startTimeSeconds,
Duration timeRage,
Duration timeRange,
ArrivalDeparture arrivalDeparture,
boolean includeCancelledTrips,
int numberOfDepartures,
Expand All @@ -435,7 +435,7 @@ public static Stream<TripTimeOnDate> getTripTimesForStop(
List<StopTimesInPattern> stopTimesInPatterns = transitService.stopTimesForStop(
stop,
startTimeSeconds,
timeRage,
timeRange,
numberOfDepartures,
arrivalDeparture,
includeCancelledTrips
Expand Down

0 comments on commit dfe36ef

Please sign in to comment.