File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public EditableText(string text)
5050 /// </summary>
5151 /// <param name="textEdit">A TextEdit object that encapsulates the text and the range that need to be replaced.</param>
5252 /// <returns>An editable object which contains the supplied edit.</returns>
53- public EditableText ApplyEdit1 ( TextEdit textEdit )
53+ public EditableText ApplyEdit ( TextEdit textEdit )
5454 {
5555 ValidateTextEdit ( textEdit ) ;
5656
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ private List<CorrectionExtent> GetCorrections(
198198 foreach ( var correctionExtent in correctionExtents )
199199 {
200200 var shiftedCorrectionExtent = Normalize ( funcDefAstStartPos , correctionExtent ) ;
201- editableText = editableText . ApplyEdit1 ( shiftedCorrectionExtent ) ;
201+ editableText . ApplyEdit ( shiftedCorrectionExtent ) ;
202202 }
203203
204204 var result = new List < CorrectionExtent > ( ) ;
You can’t perform that action at this time.
0 commit comments