Skip to content

Commit

Permalink
Fix two Typos in the Create New Ecore Command.
Browse files Browse the repository at this point in the history
  • Loading branch information
sgraband authored and eneufeld committed Jan 7, 2020
1 parent 0d39b05 commit 50d00db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/theia-ecore/src/browser/EcoreCommandContribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
});
Expand Down

0 comments on commit 50d00db

Please sign in to comment.