From 3f1970ebb218a4a1c72b50ad8f65f89d09eb2cb9 Mon Sep 17 00:00:00 2001
From: Thomas Lenz <Thomas.Lenz@mni.thm.de>
Date: Thu, 5 Apr 2018 13:23:35 +0200
Subject: [PATCH] Fix typo

---
 .../content-choice-creator.component.html                     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/components/fragments/content-choice-creator/content-choice-creator.component.html b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.html
index e12f8984f..84b73b89f 100644
--- a/src/app/components/fragments/content-choice-creator/content-choice-creator.component.html
+++ b/src/app/components/fragments/content-choice-creator/content-choice-creator.component.html
@@ -4,13 +4,13 @@
                   color="primary" [(ngModel)]="singleChoice" name="singleChoice">Single choice
     </mat-checkbox>
     <mat-checkbox *ngIf="!selected" (click)="multipleChoice = true; singleChoice = false; selected = true"
-                  color="primary" [(ngModel)]="multipleChoice" name="multiChoice">Multi choice
+                  color="primary" [(ngModel)]="multipleChoice" name="multiChoice">Multiple choice
     </mat-checkbox>
     <mat-checkbox *ngIf="selected" color="primary" [(ngModel)]="singleChoice" name="singleChoice" disabled>
       Single choice
     </mat-checkbox>
     <mat-checkbox *ngIf="selected" color="primary" [(ngModel)]="multipleChoice" name="multiChoice" disabled>
-      Multi choice
+      Multiple choice
     </mat-checkbox>
   </section>
   <div *ngIf="singleChoice || multipleChoice">
-- 
GitLab