From e932f97206db619e96d80187385a490ec98d0a79 Mon Sep 17 00:00:00 2001 From: Khan Winter <35942988+thecoolwinter@users.noreply.github.com> Date: Fri, 14 Feb 2025 09:39:11 -0600 Subject: [PATCH] Fix Delegate Typo --- .../Controller/TextViewController+TextViewDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/CodeEditSourceEditor/Controller/TextViewController+TextViewDelegate.swift b/Sources/CodeEditSourceEditor/Controller/TextViewController+TextViewDelegate.swift index ec5f82439..ee94477fe 100644 --- a/Sources/CodeEditSourceEditor/Controller/TextViewController+TextViewDelegate.swift +++ b/Sources/CodeEditSourceEditor/Controller/TextViewController+TextViewDelegate.swift @@ -18,7 +18,7 @@ extension TextViewController: TextViewDelegate { } } - public func textView(_ textView: TextView, didReplaceContentsIn range: NSRange, with: String) { + public func textView(_ textView: TextView, didReplaceContentsIn range: NSRange, with string: String) { gutterView.needsDisplay = true for coordinator in self.textCoordinators.values() { if let coordinator = coordinator as? TextViewDelegate {