diff --git a/docs/source-pytorch/common/hooks.rst b/docs/source-pytorch/common/hooks.rst index 79b1118a0dcf4..8ab2ff2511331 100644 --- a/docs/source-pytorch/common/hooks.rst +++ b/docs/source-pytorch/common/hooks.rst @@ -212,13 +212,14 @@ with the source of each hook indicated: │ ├── [LightningModule] │ └── [Strategy] │ - ├── on_fit_end() - │ ├── [Callbacks] - │ ├── [LightningModule] - │ └── [Strategy] - │ └── teardown(stage="fit") - └── [Callbacks only] + ├── [Strategy] + ├── on_fit_end() + │ ├── [Callbacks] + │ └── [LightningModule] + ├── [LightningDataModule] + ├── [Callbacks] + └── [LightningModule] *********************** Testing Loop Hook Order