From 36d496617886f47d788c4d8e433b2688eadb7782 Mon Sep 17 00:00:00 2001 From: Vijay Krishna <39220950+vijaykriishna@users.noreply.github.com> Date: Sat, 17 Apr 2021 10:03:34 +0530 Subject: [PATCH] Fixed typo in Autograd page --- beginner_source/basics/autogradqs_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner_source/basics/autogradqs_tutorial.py b/beginner_source/basics/autogradqs_tutorial.py index 8a92fc024a7..ad3d284fee3 100644 --- a/beginner_source/basics/autogradqs_tutorial.py +++ b/beginner_source/basics/autogradqs_tutorial.py @@ -47,7 +47,7 @@ # # In this network, ``w`` and ``b`` are **parameters**, which we need to # optimize. Thus, we need to be able to compute the gradients of loss -# function with respect to those variables. In orded to do that, we set +# function with respect to those variables. In order to do that, we set # the ``requires_grad`` property of those tensors. #######################################################################