From 7745ae5b42175f6466b7e770b3955799ae5d4241 Mon Sep 17 00:00:00 2001 From: Luiz Bills Date: Sun, 18 Aug 2024 11:20:55 -0300 Subject: [PATCH] Fix typo --- docs/vector.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/vector.rst b/docs/vector.rst index c1a709c..e82071e 100644 --- a/docs/vector.rst +++ b/docs/vector.rst @@ -182,8 +182,8 @@ old one:: a = vector(1,1) -- create vector b = a -- b references a c = a:clone() -- c is a copy of a - b.x = 0 -- changes a,b and c - print(a,b,c) -- prints '(1,0), (1,0), (1,1)' + b.x = 0 -- changes a, b and c + print(a,b,c) -- prints '(0,1), (0,1), (1,1)' **Example**::