Skip to content

Commit

Permalink
fix: rename AbstractStagePaginationSession#onStart() to AbstractStage…
Browse files Browse the repository at this point in the history
…PaginationSession#start()
  • Loading branch information
Amgelo563 committed Jan 19, 2024
1 parent c7da877 commit 1d0c031
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 Amgelo563
* Copyright (c) 2024 Amgelo563
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -40,7 +40,7 @@ export abstract class AbstractStagePaginationSession<Result>
{
protected abstract readonly stages: SessionStageArray;

public handleStart(meta: SessionExecutionMeta): Awaitable<void> {
public start(meta: SessionExecutionMeta): Awaitable<void> {
const stage = this.stages[0];

return stage.onStart(this.startInteraction, meta);
Expand Down

0 comments on commit 1d0c031

Please sign in to comment.