From 50d00dbba78daa97e9e292e8c304b83a266724e6 Mon Sep 17 00:00:00 2001 From: simonGraband Date: Sat, 28 Dec 2019 13:48:58 +0100 Subject: [PATCH] Fix two Typos in the Create New Ecore Command. --- client/theia-ecore/src/browser/EcoreCommandContribution.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/theia-ecore/src/browser/EcoreCommandContribution.ts b/client/theia-ecore/src/browser/EcoreCommandContribution.ts index cddbfd5..f48b006 100644 --- a/client/theia-ecore/src/browser/EcoreCommandContribution.ts +++ b/client/theia-ecore/src/browser/EcoreCommandContribution.ts @@ -100,9 +100,9 @@ export class EcoreCommandContribution implements CommandContribution { this.quickOpenService.open(quickOpenModel, this.getOptions(hint, false)); }; - showInput("Name", "Name of Ecore ", (nameOfEcore) => { + showInput("Name", "Name of Ecore", (nameOfEcore) => { showInput("Prefix", "Prefix", (prefix) => { - showInput("URI", "URI:", (ecore_uri) => { + showInput("URI", "URI", (ecore_uri) => { createEcore(nameOfEcore, prefix, ecore_uri); }); });