From e5742494f6080c8e6f43c37689fc18a7c4b39dfd Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 12 Feb 2019 07:52:55 -0800 Subject: [PATCH] Minor typo Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/16980 Differential Revision: D14033686 Pulled By: gchanan fbshipit-source-id: 9f7967defc6795640e14157d0b701b185061741f --- torch/utils/data/dataloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torch/utils/data/dataloader.py b/torch/utils/data/dataloader.py index 9d79990..97b9427 100644 --- a/torch/utils/data/dataloader.py +++ b/torch/utils/data/dataloader.py @@ -328,7 +328,7 @@ class _DataLoaderIter(object): # # Now let's get back to 1: # how we gracefully exit the workers when the last reference to the - # iteartor is gone. + # iterator is gone. # # To achieve this, we implement the following logic along with the design # choices mentioned above: -- 2.7.4