Skip to content

Commit 588e831

Browse files
NathanielDamourscarmoccaawaelchli
authored andcommitted
Fix typos initialize in docs (#13557)
Co-authored-by: Carlos Mocholí <[email protected]> Co-authored-by: Adrian Wälchli <[email protected]>
1 parent 74ab878 commit 588e831

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/source-app/code_samples/quickstart/app/app_1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,5 @@ def run(self):
8888
# Step 4: download a dataset to your local directory under `/data`
8989
download_data("https://pl-flash-data.s3.amazonaws.com/hymenoptera_data.zip", "./data")
9090

91-
# Initalize your Lightning app with 5 epochs
91+
# Initialize your Lightning app with 5 epochs
9292
app = L.LightningApp(RootFlow(5, "./data/hymenoptera_data"))

docs/source-app/code_samples/quickstart/hello_world/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ def run(self):
1212
print("Hello World!")
1313

1414

15-
# Step 3: Initalize a LightningApp with the LightningFlow you defined (in step 1)
15+
# Step 3: Initialize a LightningApp with the LightningFlow you defined (in step 1)
1616
app = L.LightningApp(HelloWorld())

docs/source-app/get_started/go_beyond_training_content.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ Implement the ``configure_layout`` method to connect them together:
308308

309309
5: Init the ``app`` object
310310
^^^^^^^^^^^^^^^^^^^^^^^^^^
311-
Initalize an ``app`` object with the ``TrainDeploy`` component (this won't run the App yet):
311+
Initialize an ``app`` object with the ``TrainDeploy`` component (this won't run the App yet):
312312

313313
.. code:: python
314314
:emphasize-lines: 29

docs/source-pytorch/common/checkpointing_basic.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ The LightningModule also has access to the Hyperparameters
106106
107107
----
108108

109-
Initalize with other parameters
110-
===============================
109+
Initialize with other parameters
110+
================================
111111
If you used the *self.save_hyperparameters()* method in the init of the LightningModule, you can initialize the model with different hyperparameters.
112112

113113
.. code-block:: python

0 commit comments

Comments
 (0)