From 8e80c0218f8b497e897f5243f3bd717b00275403 Mon Sep 17 00:00:00 2001 From: Lorenzo Zabot Date: Mon, 19 May 2025 15:03:04 +0200 Subject: [PATCH] docs(caching): correct weird sentence --- content/techniques/caching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/techniques/caching.md b/content/techniques/caching.md index 58e0a04a91..bf5aecf553 100644 --- a/content/techniques/caching.md +++ b/content/techniques/caching.md @@ -322,7 +322,7 @@ CacheModule.registerAsync({ This works the same as `useClass` with one critical difference - `CacheModule` will lookup imported modules to reuse any already-created `ConfigService`, instead of instantiating its own. -> info **Hint** `CacheModule#register` and `CacheModule#registerAsync` and `CacheOptionsFactory` has an optional generic (type argument) to narrow down store-specific configuration options, making it type safe. +> info **Hint** `CacheModule#register`, `CacheModule#registerAsync` and `CacheOptionsFactory` have an optional generic (type argument) to narrow down store-specific configuration options, making it type safe. You can also pass so-called `extraProviders` to the `registerAsync()` method. These providers will be merged with the module providers.