diff --git a/src/app/creator-room/creator-room.component.html b/src/app/creator-room/creator-room.component.html
index 4cc37a38883ec5e2fbbfc84d3e6f14b8841648c2..56389ecab526b845e08701191c7e9de681738915 100644
--- a/src/app/creator-room/creator-room.component.html
+++ b/src/app/creator-room/creator-room.component.html
@@ -1,6 +1,6 @@
 <div fxLayout="column" fxLayoutAlign="start" fxLayoutGap="20px" fxFill>
   <div fxLayout="row" fxLayoutAlign="center">
-    <mat-card *ngIf="room && !modify && !deleteDialog" class="input-formular">
+    <mat-card *ngIf="room && !modify && !deleteDialog" class="input-form">
       <mat-card-header>
         <mat-card-title>
           <h3 class="subheading-2">{{ room.name }}</h3>
@@ -29,7 +29,7 @@
                 routerLink="/creator/room/{{room.id}}/comments">
           Comments
         </button>
-        <button *ngIf="!modify" (click)="enableModifications()" mat-button color="primary"
+        <button *ngIf="!modify" (click)="showEditDialog()" mat-button color="primary"
                 matTooltip="Modify room's details">
           Modify room
         </button>
@@ -44,7 +44,7 @@
         </button>
       </mat-card-actions>
     </mat-card>
-    <mat-card *ngIf="modify && room" class="input-formular">
+    <mat-card *ngIf="modify && room" class="input-form">
       <mat-card-header>
         <h3>Modify properties</h3>
       </mat-card-header>
@@ -62,7 +62,7 @@
         </mat-form-field>
       </mat-card-content>
       <mat-card-actions>
-        <button (click)="disableModifications()" mat-button color="primary" matTooltip="Leave modification-dialog">
+        <button (click)="hideEditDialog()" mat-button color="primary" matTooltip="Leave modification-dialog">
           Leave
         </button>
         <button (click)="updateRoom()" mat-button color="primary" matTooltip="Update properties">
diff --git a/src/app/creator-room/creator-room.component.scss b/src/app/creator-room/creator-room.component.scss
index 1bb3accd9b08818bb2a896abc8ae8a9d36f1d9df..9cfcef3148ff5cab0a7f86d9bf88f5c8755ccf33 100644
--- a/src/app/creator-room/creator-room.component.scss
+++ b/src/app/creator-room/creator-room.component.scss
@@ -6,6 +6,6 @@ mat-card-content > :first-child {
   margin-top: 16px;
 }
 
-.input-formular {
+.input-form {
   min-width: 650px;
 }
diff --git a/src/app/creator-room/creator-room.component.ts b/src/app/creator-room/creator-room.component.ts
index b922414e627d6cb195726cd1bca60c8a6708bdec..f841923a4684504bb981bf4885100f2cf9d57ead 100644
--- a/src/app/creator-room/creator-room.component.ts
+++ b/src/app/creator-room/creator-room.component.ts
@@ -36,14 +36,14 @@ export class CreatorRoomComponent extends RoomComponent implements OnInit {
     this.location.back();
   }
 
-  enableModifications(): void {
+  showEditDialog(): void {
     this.roomName = this.room.name;
     this.roomShortId = this.room.shortId;
     this.roomDescription = this.room.description;
     this.modify = true;
   }
 
-  disableModifications(): void {
+  hideEditDialog(): void {
     this.modify = false;
   }
 
@@ -52,10 +52,10 @@ export class CreatorRoomComponent extends RoomComponent implements OnInit {
       (this.roomShortId === this.room.shortId) &&
       (this.roomDescription === this.room.description)
     ) {
-      this.notification.show('No changes');
+      this.notification.show('There were no changes');
       return;
     } else {
-      this.notification.show('Properties changed');
+      this.notification.show('Changes are made');
       this.roomService.updateRoom(this.room)
         .subscribe(() => this.goBack());
     }