From cdc743e95302bd15e3ecacc583713344c3f15c2e Mon Sep 17 00:00:00 2001 From: Paolo Rabino <53005200+paolotron@users.noreply.github.com> Date: Mon, 20 Feb 2023 15:09:03 +0100 Subject: [PATCH] fix: documentation grammar mistake --- docs/demo/multigpu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/demo/multigpu.md b/docs/demo/multigpu.md index 1752a03b..52881b4d 100644 --- a/docs/demo/multigpu.md +++ b/docs/demo/multigpu.md @@ -95,7 +95,7 @@ class DummyNetwork(nn.Module): Lightning Module ---------------- -[Pytorch lightning](https://www.pytorchlightning.ai/) is a high-level pytorch wrapper that simplifies a lot of boilerplate code. The core of the pytorch lightning is the `LightningModule` that provides a warpper for the training framework. In this section, we provide a segmentation training wrapper that extends the `LightningModule`. +[Pytorch lightning](https://www.pytorchlightning.ai/) is a high-level pytorch wrapper that simplifies a lot of boilerplate code. The core of the pytorch lightning is the `LightningModule` that provides a wrapper for the training framework. In this section, we provide a segmentation training wrapper that extends the `LightningModule`. ```python