From 95450932a7b63a4398ed55933058f0e6ea7ba151 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Tue, 26 Jul 2022 16:19:29 +0300 Subject: [PATCH] Correct typo in booking.js --- assets/js/pages/booking.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/pages/booking.js b/assets/js/pages/booking.js index c00ce45c..58908ede 100644 --- a/assets/js/pages/booking.js +++ b/assets/js/pages/booking.js @@ -157,7 +157,7 @@ App.Pages.Booking = (function () { optimizeContactInfoDisplay(); - // If the manage mode is true, the appointments data should be loaded by default. + // If the manage mode is true, the appointment data should be loaded by default. if (manageMode) { applyAppointmentData(vars('appointment_data'), vars('provider_data'), vars('customer_data')); } else { @@ -403,7 +403,7 @@ App.Pages.Booking = (function () { * * When the user clicks the "Cancel" button this form is going to be submitted. We need * the user to confirm this action because once the appointment is cancelled, it will be - * delete from the database. + * deleted from the database. * * @param {jQuery.Event} event */