Skip to content

Commit

Permalink
remove double '+' typo (#9883)
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga authored and hansemannn committed Feb 24, 2018
1 parent 05c2bd4 commit 93af015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/cli/lib/info.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ exports.render = function (logger, config, rpad, styleHeading, styleValue, style
);

logger.log(styleHeading(__('Android NDK')) + '\n'
+ +' ' + rpad(__('NDK Path')) + ' = ' + styleValue(data.ndk && data.ndk.path || __('not found')) + '\n'
+ ' ' + rpad(__('NDK Path')) + ' = ' + styleValue(data.ndk && data.ndk.path || __('not found')) + '\n'
+ ' ' + rpad(__('NDK Version')) + ' = ' + styleValue(data.ndk && data.ndk.version || __('not found')) + '\n'
);

Expand Down

0 comments on commit 93af015

Please sign in to comment.