Skip to content

Commit 644e7aa

Browse files
authored
Fixing word tense (#6974)
Changing "defined" to "defines" in keeping with the convention of using present tense in comments.
1 parent b37b58a commit 644e7aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class LitAutoEncoder(pl.LightningModule):
177177
return embedding
178178

179179
def training_step(self, batch, batch_idx):
180-
# training_step defined the train loop. It is independent of forward
180+
# training_step defines the train loop. It is independent of forward
181181
x, y = batch
182182
x = x.view(x.size(0), -1)
183183
z = self.encoder(x)

0 commit comments

Comments
 (0)