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:
parent
ab42b2d520
commit
9e6f8fe2bf
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user