Skip to content

Commit

Permalink
Correct method name.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmgallahan authored and aloneguid committed Jul 12, 2020
1 parent 9c87ae7 commit f3f96b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Stores_InMemory.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ To configure the store:

```csharp
IMySettings settings = new ConfigurationBuilder<IMySettings>()
.UseInMemory()
.UseInMemoryDictionary()
.Build();
```

The store supports reading and writing, and stores configuration in the application memory. When application restarts all the setting values are lost. You may want to use this store for debugging or testing, other that that it has no real applications.

## Collections

Collections are supported by using the [flatline syntax](flatline.md).
Collections are supported by using the [flatline syntax](flatline.md).

0 comments on commit f3f96b4

Please sign in to comment.