Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuckton committed Dec 13, 2023
1 parent 9a48a2d commit f5a3b4d
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 f5a3b4d

Please sign in to comment.