From 5d31e92165b0aa2e4cde363818c3c03b21da4e8c Mon Sep 17 00:00:00 2001 From: Nicolas Braud-Santoni Date: Sat, 23 Mar 2019 23:58:11 +0100 Subject: [PATCH] Revert "Vector2: Add cross-references to the relevant protocols in docstring" This reverts commit a52160ad7bb6fe9056818184aadf8362cce1eca6. --- ppb_vector/vector2.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ppb_vector/vector2.py b/ppb_vector/vector2.py index e193b513..344ee791 100644 --- a/ppb_vector/vector2.py +++ b/ppb_vector/vector2.py @@ -63,9 +63,8 @@ class Vector2: :py:class:`Vector2` implements many convenience features, as well as useful mathematical operations for 2D geometry and linear algebra. - :py:class:`Vector2` implements :py:class:`Sequence - ` (and subsequently :py:class:`Iterable - `), allowing usage like converting, indexing, and unpacking: + :py:class:`Vector2` acts as an iterable and a sequence, allowing usage like + converting, indexing, and unpacking: >>> v = Vector2(-3, -5) >>> list(v)