diff --git a/source/blazor-university-com/input/pages/dependency-injection/dependency-lifetimes-and-scopes/singleton-dependencies/index.md b/source/blazor-university-com/input/pages/dependency-injection/dependency-lifetimes-and-scopes/singleton-dependencies/index.md index 2d58945..0e43bd0 100644 --- a/source/blazor-university-com/input/pages/dependency-injection/dependency-lifetimes-and-scopes/singleton-dependencies/index.md +++ b/source/blazor-university-com/input/pages/dependency-injection/dependency-lifetimes-and-scopes/singleton-dependencies/index.md @@ -31,7 +31,7 @@ public interface IChatService ``` To implement this service we'll use a `List` to store the chat history, -and remove messages from the start of the list whenever there are more than 100 in the queue. +and remove messages from the start of the list whenever there are more than 50 in the queue. We'll use the `lock()` statement to ensure thread safety. ```razor {: .line-numbers}