Skip to content

Commit

Permalink
Fixing word tense (#6974)
Browse files Browse the repository at this point in the history
Changing "defined" to "defines" in keeping with the convention of using present tense in comments.
  • Loading branch information
adityashukzy authored Apr 13, 2021
1 parent b37b58a commit 644e7aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class LitAutoEncoder(pl.LightningModule):
return embedding
def training_step(self, batch, batch_idx):
# training_step defined the train loop. It is independent of forward
# training_step defines the train loop. It is independent of forward
x, y = batch
x = x.view(x.size(0), -1)
z = self.encoder(x)
Expand Down

0 comments on commit 644e7aa

Please sign in to comment.