From 0ac4d6dcb9b74d38575aa6c7019af49eb3ffa0c3 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Sat, 17 May 2025 09:55:09 +0300 Subject: [PATCH] Fix spacing inconsistency before ellipsis in event comments --- events.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/events.md b/events.md index e08e7989d9..f12622504a 100644 --- a/events.md +++ b/events.md @@ -918,7 +918,7 @@ test('orders can be processed', function () { return $order; }); - // Events are dispatched as normal and observers will run ... + // Events are dispatched as normal and observers will run... $order->update([...]); }); ``` @@ -948,7 +948,7 @@ class ExampleTest extends TestCase return $order; }); - // Events are dispatched as normal and observers will run ... + // Events are dispatched as normal and observers will run... $order->update([...]); } }