From 28aa52b6725c43735d6d907c412c959c3fe46456 Mon Sep 17 00:00:00 2001 From: Khan Winter <35942988+thecoolwinter@users.noreply.github.com> Date: Fri, 1 Mar 2024 12:30:20 -0600 Subject: [PATCH] Update TextLayoutManager+Transaction.swift --- .../TextLayoutManager/TextLayoutManager+Transaction.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Sources/CodeEditTextView/TextLayoutManager/TextLayoutManager+Transaction.swift b/Sources/CodeEditTextView/TextLayoutManager/TextLayoutManager+Transaction.swift index b55f3032..c160bfd5 100644 --- a/Sources/CodeEditTextView/TextLayoutManager/TextLayoutManager+Transaction.swift +++ b/Sources/CodeEditTextView/TextLayoutManager/TextLayoutManager+Transaction.swift @@ -30,8 +30,9 @@ extension TextLayoutManager { } layoutLines() } else if transactionCounter < 0 { - // swiftlint:disable:next line_length - assertionFailure("TextLayoutManager.endTransaction called without a matching TextLayoutManager.beginTransaction call") + assertionFailure( + "TextLayoutManager.endTransaction called without a matching TextLayoutManager.beginTransaction call" + ) } } }