Skip to content

Commit 49c7896

Browse files
CR feedback.
1 parent 33e1e5d commit 49c7896

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/compiler/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1646,7 +1646,7 @@ module ts {
16461646
equals = 0x3D, // =
16471647
exclamation = 0x21, // !
16481648
greaterThan = 0x3E, // >
1649-
hash = 0x23,
1649+
hash = 0x23, // #
16501650
lessThan = 0x3C, // <
16511651
minus = 0x2D, // -
16521652
openBrace = 0x7B, // {

src/services/patternMatcher.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ module ts {
1919
camelCaseWeight: number;
2020

2121
// If this was a match where all consituent parts of the candidate and search pattern
22-
// matched cast sensitively or case insensitively. Case sensitive matches of the kind
22+
// matched case sensitively or case insensitively. Case sensitive matches of the kind
2323
// are better matches than insensitive matches.
2424
isCaseSensitive: boolean;
2525

2626
// Whether or not this match occured with the punctuation from the search pattern stripped
27-
// out or not. Matched without the punctuation stripped are better than ones with punctuation
27+
// out or not. Matches without the punctuation stripped are better than ones with punctuation
2828
// stripped.
2929
punctuationStripped: boolean;
3030
}
@@ -34,7 +34,7 @@ module ts {
3434
// once you no longer need it.
3535
export interface PatternMatcher {
3636
// Used to match a candidate against the last segment of a possibly dotted pattern. This
37-
// is useful as a quick check to preven having to compute a container before calling
37+
// is useful as a quick check to prevent having to compute a container before calling
3838
// "getMatches".
3939
//
4040
// For example, if the search pattern is "ts.c.SK" and the candidate is "SyntaxKind", then

0 commit comments

Comments
 (0)