From 0c7bb08e7f9cc3b91bfdf187c5ca66fda60cf534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Grou=C3=A8s?= <valentin.groues@uni.lu> Date: Thu, 19 Oct 2017 14:48:23 +0200 Subject: [PATCH] fix typo in comment --- smash/web/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smash/web/forms.py b/smash/web/forms.py index 80fcf878..10b925e9 100644 --- a/smash/web/forms.py +++ b/smash/web/forms.py @@ -252,7 +252,7 @@ class AppointmentEditForm(ModelForm): appointment_types_from_links.append(appointment_type_link.appointment_type) for appointment_type in appointment_types: if appointment_type not in appointment_types_from_links: - # we create new appointment links for appointements types that have been added + # we create new appointment links for appointments types that have been added appointment_type_link = AppointmentTypeLink(appointment=appointment, appointment_type=appointment_type) appointment_type_link.save() return appointment -- GitLab