From e2229a89b0618b58011a69a28e3d23cf7096e547 Mon Sep 17 00:00:00 2001 From: keineahnung2345 Date: Thu, 17 Nov 2022 22:28:20 +0000 Subject: [PATCH] Fix typo in aten/src/README.md (#89175) remove redundant "have to" Pull Request resolved: https://github.com/pytorch/pytorch/pull/89175 Approved by: https://github.com/kit1980 --- aten/src/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aten/src/README.md b/aten/src/README.md index add28169263..3127ed5c8c3 100644 --- a/aten/src/README.md +++ b/aten/src/README.md @@ -69,8 +69,8 @@ will `retain` it itself. ``` Sometimes, you have a tensor in hand which you'd like to use directly, but -under some conditions you have to have to call, e.g., `newContiguous`, to get -it into the correct form: +under some conditions you have to call, e.g., `newContiguous`, to get it into +the correct form: ``` if (!(k_->stride(3) == 1) || !(k_->stride[2] == k_->size(3))) {