Skip to content

Commit d9c5d74

Browse files
Update README.md
1 parent e1e47c2 commit d9c5d74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ RazorEngineCore is not responsible for caching. Each team and project has their
9393
If you dont have one, use following static ConcurrentDictionary example as a simplest thread safe solution.
9494

9595
```cs
96-
private static ConcurrentDictionary<string, IRazorEngineCompiledTemplate> TemplateCache = new ConcurrentDictionary<string, IRazorEngineCompiledTemplate>();
96+
private static ConcurrentDictionary<int, IRazorEngineCompiledTemplate> TemplateCache = new ConcurrentDictionary<int, IRazorEngineCompiledTemplate>();
9797
```
9898

9999
```cs

0 commit comments

Comments
 (0)