From b136a56f38adbcf2bf15ae6239310911c260b235 Mon Sep 17 00:00:00 2001 From: Nikita Bishonen Date: Mon, 16 Mar 2026 10:56:30 +0000 Subject: [PATCH] (fix): small typo in blanket-implementations.md Fixes small typo (many -> may) in Blanket Trait Implementations section --- content/blanket-implementations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/blanket-implementations.md b/content/blanket-implementations.md index 3f553a9..2b7f5ca 100644 --- a/content/blanket-implementations.md +++ b/content/blanket-implementations.md @@ -218,10 +218,10 @@ such feature has to be carefully considered to ensure that no inconsistency can Due to potential conflicting implementations, the use of blanket implementations offer limited customizability, in case if a context wants to have a different implementation. -Although a context many define its own context-specific provider to override the blanket +Although a context may define its own context-specific provider to override the blanket provider, it would face other limitations such as not being able to implement other traits that may cause a conflict. In practice, we consider that blanket implementations allow for _a singular context-generic provider_ to be defined. In future chapters, we will look at how to relax the singular constraint, -to make it possible to allow _multiple_ context-generic or context-specific providers to co-exist. \ No newline at end of file +to make it possible to allow _multiple_ context-generic or context-specific providers to co-exist.