diff --git a/src/harness/client.ts b/src/harness/client.ts index 937b859853b..1c7c0adb834 100644 --- a/src/harness/client.ts +++ b/src/harness/client.ts @@ -385,7 +385,7 @@ namespace ts.server { } getRenameInfo(fileName: string, position: number, _options?: RenameInfoOptions, findInStrings?: boolean, findInComments?: boolean): RenameInfo { - // not using options they should be sent with a RenameInfo request, which this function does not perform + // Not passing along 'options' because server should already have those from the 'configure' command const args: protocol.RenameRequestArgs = { ...this.createFileLocationRequestArgs(fileName, position), findInStrings, findInComments }; const request = this.processRequest(CommandNames.Rename, args);