Skip to content

Commit 59756be

Browse files
committed
Update README.md
1 parent 831c883 commit 59756be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ The **.NET ObjectFiller** also supports IEnumerable<T> (and all derivations) and
2323
- [Fill Lists and Dictionaries](#fill-lists-and-dictionaries)
2424
- [Detect Circular Dependencies](#detect-circular-dependencies)
2525
- [Mix all up](#mix-all-up)
26+
- [Randomizer<T> class](#randomizer-class)
2627
- [Available Plugins](#available-plugins)
2728
- [IntRangePlugin](#rangeintegerplugin)
2829
- [MnemonicStringPlugin](#mnemonicstringplugin)
@@ -538,7 +539,7 @@ Here is another example where the Randomizer generates a random string based on
538539
```csharp
539540
public string GiveMeSomeRandomLoremIpsumText()
540541
{
541-
Randomizer<string>.Create(new Lipsum(LipsumFlavor.LoremIpsum));
542+
return Randomizer<string>.Create(new Lipsum(LipsumFlavor.LoremIpsum));
542543
}
543544
```
544545

0 commit comments

Comments
 (0)