Skip to content

Commit 8ce17eb

Browse files
authored
refactor: Fix typo (#890)
1 parent ff0b605 commit 8ce17eb

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

dev/attest/src/assertions.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as assert from "node:assert/strict"
22
import { hasDomain } from "arktype/internal/utils/domains.js"
33
import type { AssertionContext } from "./attest.js"
44

5-
export type ThrowAsertionErrorContext = {
5+
export type ThrowAssertionErrorContext = {
66
message: string
77
expected?: unknown
88
actual?: unknown
@@ -12,7 +12,7 @@ export type ThrowAsertionErrorContext = {
1212
export const throwAssertionError = ({
1313
ctx,
1414
...errorArgs
15-
}: ThrowAsertionErrorContext): never => {
15+
}: ThrowAssertionErrorContext): never => {
1616
const e = new assert.AssertionError(errorArgs)
1717
e.stack = ctx.assertionStack
1818
throw e

dev/attest/src/bench/type.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ const getInstantiationsWithFile = (fileText: string, fakePath: string) => {
5454

5555
const transformBenchSource = (
5656
originalFile: SourceFile,
57-
isolatedBenchExressionText: string,
57+
isolatedBenchExpressionText: string,
5858
includeBenchFn: boolean,
5959
fakePath: string
6060
) => {
6161
const fileToTransform = originalFile.copy(fakePath)
6262
const currentBenchStatement = fileToTransform.getFirstDescendantOrThrow(
6363
(node) =>
6464
node.isKind(SyntaxKind.ExpressionStatement) &&
65-
node.getText() === isolatedBenchExressionText
65+
node.getText() === isolatedBenchExpressionText
6666
) as Node<ts.ExpressionStatement>
6767
if (!includeBenchFn) {
6868
emptyBenchFn(currentBenchStatement)

dev/attest/src/caller.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ const nonexistentCurrentLine = {
4040

4141
export type FormatFilePathOptions = {
4242
relative?: string | boolean
43-
seperator?: string
43+
separator?: string
4444
}
4545

4646
export const formatFilePath = (
4747
original: string,
48-
{ relative, seperator }: FormatFilePathOptions
48+
{ relative, separator }: FormatFilePathOptions
4949
) => {
5050
let formatted = original
5151
if (original.startsWith("file:///")) {
@@ -57,10 +57,10 @@ export const formatFilePath = (
5757
formatted
5858
)
5959
}
60-
if (seperator) {
60+
if (separator) {
6161
formatted = formatted.replace(
6262
new RegExp(`\\${path.sep}`, "g"),
63-
seperator
63+
separator
6464
)
6565
}
6666
return formatted

dev/attest/src/type/internal/getAssertionsInFile.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ const checkTypeAssertion = (
221221
}
222222

223223
// Using any as isTypeAssignableTo is not publicly exposed
224-
const getInteralTypeChecker = (project: Project) =>
224+
const getInternalTypeChecker = (project: Project) =>
225225
project.getTypeChecker().compilerObject as ts.TypeChecker & {
226226
isTypeAssignableTo: (first: ts.Type, second: ts.Type) => boolean
227227
}
@@ -230,7 +230,7 @@ const checkMutualAssignability = (
230230
assertionTypes: Required<AssertionTypes>,
231231
project: Project
232232
) => {
233-
const checker = getInteralTypeChecker(project)
233+
const checker = getInternalTypeChecker(project)
234234
const isActualAssignableToExpected = checker.isTypeAssignableTo(
235235
assertionTypes.actual.compilerType,
236236
assertionTypes.expected.compilerType

0 commit comments

Comments
 (0)