From 86352df6a6adf45dfe738d0b75960db62f3a3ac6 Mon Sep 17 00:00:00 2001 From: Steven Guh Date: Wed, 18 Jul 2018 20:37:44 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 70c9c62..a63edce 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Immutable collections that use trie as their internal data structure, and provide a direct replacement for the .NET's implementation of `ImmutableList` and `ImmutableDictionary`. ## ImmutableTrieDictionary -This is an immutable dictionary that's aimed to replaced the use of `ImmutableDictionary`. This collection uses comparable or less memory and provides at least 2x speed up in most operation comparing to .NET's `ImmutableDictionary`. This collection is based on [hash array mapped trie](https://en.wikipedia.org/wiki/Hash_array_mapped_trie). +This is an immutable dictionary that's aimed to replace the use of `ImmutableDictionary`. This collection uses comparable or less memory and provides at least 2x speed up in most operation comparing to .NET's `ImmutableDictionary`. This collection is based on [hash array mapped trie](https://en.wikipedia.org/wiki/Hash_array_mapped_trie). A [proposal](https://github.com/dotnet/corefx/issues/29346) was made in [corefx](https://github.com/dotnet/corefx)'s repo to use this data structure as the internal structure of `ImmutableDictionary`.