From 6213413192c048f4880bcbcf690e6f979fa97194 Mon Sep 17 00:00:00 2001 From: Gert Date: Wed, 6 Jun 2018 21:10:35 +0200 Subject: [PATCH] Fix line limit being exceeded --- lib/Refactoring/Utility/FunctionBuilder.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Refactoring/Utility/FunctionBuilder.js b/lib/Refactoring/Utility/FunctionBuilder.js index b558b32c..7a6809ba 100644 --- a/lib/Refactoring/Utility/FunctionBuilder.js +++ b/lib/Refactoring/Utility/FunctionBuilder.js @@ -235,8 +235,8 @@ module.exports = /** * Sets the maximum length a single line may occupy. After this, text will wrap. * - * This primarily influences parameter lists, which will automatically be split over multiple lines if the parameter - * list would otherwise exceed the maximum length. + * This primarily influences parameter lists, which will automatically be split over multiple lines if the + * parameter list would otherwise exceed the maximum length. * * @param {Number|null} maxLineLength The length or null to disable the maximum. *