From 51060f8c0084319b2b14221ff4688c0e5978b71f Mon Sep 17 00:00:00 2001 From: JasonGrace2282 Date: Mon, 11 Mar 2024 19:24:13 -0400 Subject: [PATCH] Fix Vector3 -> Vector3D in contributing docs --- docs/source/contributing/docs/typings.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/contributing/docs/typings.rst b/docs/source/contributing/docs/typings.rst index 748cff1e02..72891b0298 100644 --- a/docs/source/contributing/docs/typings.rst +++ b/docs/source/contributing/docs/typings.rst @@ -115,8 +115,8 @@ Typing guidelines from typing import TYPE_CHECKING if TYPE_CHECKING: - from manim.typing import Vector3 - # type stuff with Vector3 + from manim.typing import Vector3D + # type stuff with Vector3D Missing Sections for typehints are: -----------------------------------