From 840a9b71dcb36de79f28ea939b0ae3ac9845dfbb Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 27 Nov 2021 12:04:44 +1100 Subject: [PATCH] docs: Fix a few typos There are small typos in: - wscompose/convexhull.py Fixes: - Should read `respectively` rather than `respectivly`. - Should read `halves` rather than `halfs`. --- wscompose/convexhull.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscompose/convexhull.py b/wscompose/convexhull.py index 1c112cf..7263d49 100644 --- a/wscompose/convexhull.py +++ b/wscompose/convexhull.py @@ -36,7 +36,7 @@ def _myDet(p, q, r): """Calc. determinant of a special matrix with three 2D points. The sign, "-" or "+", determines the side, right or left, - respectivly, on which the point r lies, when measured against + respectively, on which the point r lies, when measured against a directed vector from p to q. """ @@ -171,7 +171,7 @@ def convexHull(P): del lower[0] del lower[-1] - # Concatenate both halfs and return. + # Concatenate both halves and return. return tuple(upper + lower)