@@ -53,7 +53,7 @@ private bool ExecuteCommandWorker(TypeCharCommandArgs args, Action nextCommandHa
5353 var textChangeOpt =
5454 TryGenerateInitialEmptyRawString ( caret . Value , cancellationToken ) ??
5555 TryGrowInitialEmptyRawString ( caret . Value , cancellationToken ) ??
56- TryGrowRawStringDelimeters ( caret . Value , cancellationToken ) ;
56+ TryGrowRawStringDelimiters ( caret . Value , cancellationToken ) ;
5757
5858 if ( textChangeOpt is not TextChange textChange )
5959 return false ;
@@ -129,8 +129,8 @@ SyntaxKind.InterpolatedSingleLineRawStringStartToken or
129129 /// <summary>
130130 /// When typing <c>"</c> given a raw string like <c>"""$$"""</c> (or a similar multiline form), then update the
131131 /// text to be: <c>""""$$""""</c>. i.e. grow both the start and end delimiters to keep the string properly
132- /// balanced. This differs from TryGrowRawStringDelimeters in that the language will consider that initial
133- /// <c>""""""</c> text to be a single delimeter , while we want to treat it as two.
132+ /// balanced. This differs from TryGrowRawStringDelimiters in that the language will consider that initial
133+ /// <c>""""""</c> text to be a single delimiter , while we want to treat it as two.
134134 /// </summary>
135135 private static TextChange ? TryGrowInitialEmptyRawString (
136136 SnapshotPoint caret ,
@@ -188,15 +188,15 @@ SyntaxKind.InterpolatedSingleLineRawStringStartToken or
188188 /// update the text to be: <c>"""" goo bar """"</c>. i.e. grow both the start and end delimiters to keep the
189189 /// string properly balanced.
190190 /// </summary>
191- private static TextChange ? TryGrowRawStringDelimeters (
191+ private static TextChange ? TryGrowRawStringDelimiters (
192192 SnapshotPoint caret ,
193193 CancellationToken cancellationToken )
194194 {
195195 var snapshot = caret . Snapshot ;
196196 var position = caret . Position ;
197197
198198 // if we have """$$" then typing `"` here should not grow the start/end quotes. we only want to grow them
199- // if the user is at the end of the start delimeter .
199+ // if the user is at the end of the start delimiter .
200200 if ( position < snapshot . Length && snapshot [ position ] == '"' )
201201 return null ;
202202
0 commit comments