Skip to content

Commit 2e39c93

Browse files
committed
Merge pull request microsoft#1117 from Microsoft/sighelp
set the correct range for paramters in signature help
2 parents 40ffa87 + 03c80ac commit 2e39c93

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/services/services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4802,7 +4802,7 @@ module ts {
48024802

48034803
var start = signatureInfoString.length;
48044804
signatureInfoString += displayPartsToString(parameter.displayParts);
4805-
var end = signatureInfoString.length - 1;
4805+
var end = signatureInfoString.length;
48064806

48074807
// add the parameter to the list
48084808
parameters.push({

0 commit comments

Comments
 (0)