Skip to content

Commit 2715f89

Browse files
committed
PascalCase -> camelCase
1 parent 3e339d8 commit 2715f89

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/services/utilities.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,21 +1337,21 @@ namespace ts {
13371337
// However we should still skip a pinned comment at the top
13381338
if (ranges.length && ranges[0].kind === SyntaxKind.MultiLineCommentTrivia && isPinnedComment(text, ranges[0])) {
13391339
position = ranges[0].end;
1340-
AdvancePastLineBreak();
1340+
advancePastLineBreak();
13411341
ranges = ranges.slice(1);
13421342
}
13431343
// As well as any triple slash references
13441344
for (const range of ranges) {
13451345
if (range.kind === SyntaxKind.SingleLineCommentTrivia && isRecognizedTripleSlashComment(node.text, range.pos, range.end)) {
13461346
position = range.end;
1347-
AdvancePastLineBreak();
1347+
advancePastLineBreak();
13481348
continue;
13491349
}
13501350
break;
13511351
}
13521352
return position;
13531353

1354-
function AdvancePastLineBreak() {
1354+
function advancePastLineBreak() {
13551355
if (position < textLength) {
13561356
const charCode = text.charCodeAt(position);
13571357
if (isLineBreak(charCode)) {

0 commit comments

Comments
 (0)