Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

Commit

Permalink
Bug Fix. Issue 58.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnguerson committed Jan 13, 2016
1 parent 9df1453 commit 58bce9e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class OntoUMLNameHandler {
{
"World","abstract","all","and","as","assert","but","check","disj","else","exactly","extends","fact",
"for","fun","iden","iff","implies","in","Int","let","lone","module","no","none","not","one","open",
"or","pred","run","set","sig","some","sum","univ","int","Int", "Property", "Object", "Datatype"
"or","pred","run","set","sig","some","sum","univ","int","Int", "Property", "Object", "Datatype", "String"

};

Expand All @@ -42,7 +42,7 @@ public String treatName (NamedElement element)
{
if(name.compareTo(alloykeywords[i])==0)
{
name = "keyword";
name = name+"_";
break;
}
}
Expand Down

0 comments on commit 58bce9e

Please sign in to comment.