From 64866a2824288845f220392b401fe5583c6f9e13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lenon?= Date: Mon, 9 Sep 2024 10:40:26 +0100 Subject: [PATCH] fix: adjust text --- docs/cron-application/schedulers.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cron-application/schedulers.mdx b/docs/cron-application/schedulers.mdx index 0a5773fb..de203a53 100644 --- a/docs/cron-application/schedulers.mdx +++ b/docs/cron-application/schedulers.mdx @@ -157,7 +157,7 @@ scheduler when bootstrapping your Athenna application. ## Dependency injection in schedulers When using schedulers classes you are able to use the `@Inject()` -annotation to inject dependencies from you application within your +annotation to inject dependencies from your application within your scheduler class: ```typescript @@ -179,7 +179,7 @@ export class DeleteRecentUsers { ### Automatic constructor injection You can also use the automatic constructor injection if -your don't want to use the `@Inject()` annotation: +you don't want to use the `@Inject()` annotation: ```typescript import { Scheduler, type Context } from '@athenna/cron'