From f9ef58232447d91b17e94b3a07c957ce51489147 Mon Sep 17 00:00:00 2001 From: Yannick Soom Date: Fri, 7 Feb 2020 13:36:34 +0100 Subject: [PATCH] Update deform_source_mesh_to_target_mesh.ipynb fixed typo --- docs/tutorials/deform_source_mesh_to_target_mesh.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb b/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb index c93a07c95..c9df1812d 100644 --- a/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb +++ b/docs/tutorials/deform_source_mesh_to_target_mesh.ipynb @@ -1811,7 +1811,7 @@ "outputs": [], "source": [ "# We will learn to deform the source mesh by offsetting its vertices\n", - "# The shape of the derform parameters is equal to the total number of vertices in src_mesh\n", + "# The shape of the deform parameters is equal to the total number of vertices in src_mesh\n", "deform_verts = torch.full(src_mesh.verts_packed().shape, 0.0, device=device, requires_grad=True)" ] },