Skip to content

Commit

Permalink
Merge pull request #151 from rbuckton/fix-typo
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
rbuckton committed Dec 13, 2023
2 parents 9a48a2d + f5a3b4d commit b7db32c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ReflectLite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ namespace Reflect {
return provider.OrdinaryOwnMetadataKeys(O, P);
}

// 6 ECMAScript Data Typ0es and Values
// 6 ECMAScript Data Types and Values
// https://tc39.github.io/ecma262/#sec-ecmascript-data-types-and-values
function Type(x: any): Tag {
if (x === null) return Tag.Null;
Expand Down
2 changes: 1 addition & 1 deletion ReflectNoConflict.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ function OrdinaryOwnMetadataKeys(O: any, P: string | symbol | undefined): any[]
return provider.OrdinaryOwnMetadataKeys(O, P);
}

// 6 ECMAScript Data Typ0es and Values
// 6 ECMAScript Data Types and Values
// https://tc39.github.io/ecma262/#sec-ecmascript-data-types-and-values
function Type(x: any): Tag {
if (x === null) return Tag.Null;
Expand Down

0 comments on commit b7db32c

Please sign in to comment.