Skip to content

Commit

Permalink
Fix minor typo: refer to the specific type subclass.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=211548711
  • Loading branch information
concavelenz authored and lauraharker committed Sep 5, 2018
1 parent 9381786 commit 739189d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/google/javascript/rhino/jstype/JSTypeRegistry.java
Expand Up @@ -385,7 +385,7 @@ private void initializeBuiltInTypes() {
NoObjectType noObjectType = new NoObjectType(this); NoObjectType noObjectType = new NoObjectType(this);
registerNativeType(JSTypeNative.NO_OBJECT_TYPE, noObjectType); registerNativeType(JSTypeNative.NO_OBJECT_TYPE, noObjectType);


NoObjectType noResolvedType = new NoResolvedType(this); NoResolvedType noResolvedType = new NoResolvedType(this);
registerNativeType(JSTypeNative.NO_RESOLVED_TYPE, noResolvedType); registerNativeType(JSTypeNative.NO_RESOLVED_TYPE, noResolvedType);


// Array // Array
Expand Down

0 comments on commit 739189d

Please sign in to comment.