Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
atuchin-m committed Nov 22, 2024
1 parent a60a242 commit 480ba38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/seed_tools/utils/study_json_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function parseStudies(
): Study[] {
const jsonStudies = JSON5.parse(
studyArrayString,
jsonStudyReviever.bind(null, options),
jsonStudyReviver.bind(null, options),
);
if (!Array.isArray(jsonStudies)) {
throw new Error('Root element must be an array');
Expand Down Expand Up @@ -110,7 +110,7 @@ function jsonStudyReplacer(
}
}

function jsonStudyReviever(
function jsonStudyReviver(
options: Options | undefined,
key: string,
value: any,
Expand Down

0 comments on commit 480ba38

Please sign in to comment.