1
0
mirror of https://github.com/adobe/brackets.git synced 2024-11-20 18:02:54 +01:00

Coding typo fix in JS code hints (#13668)

This commit is contained in:
Swagatam Mitra 2017-09-07 18:32:16 +05:30 committed by Saurabh Kathpalia
parent ab42b2d520
commit 9e6f8fe2bf

View File

@ -397,7 +397,7 @@ function getParameters(inferFnType) {
function inferArrTypeToString(inferArrType) {
var result = "Array.<";
result += inferArrType.props["<i>"].types.types.map(inferTypeToString).join(", ");
result += inferArrType.props["<i>"].types.map(inferTypeToString).join(", ");
// workaround case where types is zero length
if (inferArrType.props["<i>"].types.length === 0) {