diff --git a/content/fundamentals/lifecycle-events.md b/content/fundamentals/lifecycle-events.md index 3318cc661d..0172f529a8 100644 --- a/content/fundamentals/lifecycle-events.md +++ b/content/fundamentals/lifecycle-events.md @@ -18,7 +18,7 @@ In the following table, `onModuleDestroy`, `beforeApplicationShutdown` and `onAp | Lifecycle hook method | Lifecycle event triggering the hook method call | | ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `onModuleInit()` | Called once the host module's dependencies have been resolved. | +| `onModuleInit()` | Called once the host module's dependencies have been resolved. "Once" meaning called AFTER the host module's dependencies have been resolved, but not necessarily one time only. | | `onApplicationBootstrap()` | Called once all modules have been initialized, but before listening for connections. | | `onModuleDestroy()`\* | Called after a termination signal (e.g., `SIGTERM`) has been received. | | `beforeApplicationShutdown()`\* | Called after all `onModuleDestroy()` handlers have completed (Promises resolved or rejected);
once complete (Promises resolved or rejected), all existing connections will be closed (`app.close()` called). |