From 656b565a0f53d9f24547b060bd27aa67ebb89b88 Mon Sep 17 00:00:00 2001 From: Derek Kim Date: Sat, 15 Dec 2018 10:56:49 -0800 Subject: [PATCH] Trivial comment correction in dataloader (#15276) Summary: Trivial comment correction in dataloader Pull Request resolved: https://github.com/pytorch/pytorch/pull/15276 Differential Revision: D13477324 Pulled By: soumith fbshipit-source-id: 2a74a014999655d129311d611f2a09411339cb13 --- 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 c1ee0eb..122272b 100644 --- a/torch/utils/data/dataloader.py +++ b/torch/utils/data/dataloader.py @@ -104,7 +104,7 @@ def _worker_loop(dataset, index_queue, data_queue, done_event, collate_fn, seed, # Intialize C side signal handlers for SIGBUS and SIGSEGV. Python signal # module's handlers are executed after Python returns from C low-level - # handlers, likely when the same fatal signal happened again already. + # handlers, likely when the same fatal signal had already happened. # https://docs.python.org/3/library/signal.html Sec. 18.8.1.1 _set_worker_signal_handlers() -- 2.7.4