minor changes to the Enum -- mostly semantic

This commit is contained in:
dochoffiday 2015-08-30 19:10:59 -04:00
parent 7684d858d7
commit ff037bc9f3
3 changed files with 12 additions and 8 deletions

View file

@ -51,7 +51,7 @@ string[] numbers = GetNumbers();
string number = LoremNET.Lorem.Random(numbers);
// this will randomly select a value from the enum:
MyEnum value = LoremNET.Lorem.RandomEnum<MyEnum>();
MyEnum value = LoremNET.Lorem.Enum<MyEnum>();
```