From a399822eafab2ee8e2ec4e06bd3bd75d8dddf571 Mon Sep 17 00:00:00 2001 From: liugang Date: Thu, 16 Oct 2025 16:48:09 +0800 Subject: [PATCH] * [misc] Replace \t with spaces. --- lib/diff/diff.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/diff/diff.class.php b/lib/diff/diff.class.php index 334d4393ba..ad74e0f22d 100644 --- a/lib/diff/diff.class.php +++ b/lib/diff/diff.class.php @@ -17,7 +17,7 @@ class diff extends baseDelegate { protected static $className = 'GorHill\FineDiff\FineDiff'; - public function __construct($from_text = '', $to_text = '', $granularityStack = null) + public function __construct($from_text = '', $to_text = '', $granularityStack = null) { $this->instance = new self::$className($from_text, $to_text, $granularityStack); }