From d595493b93a4fec91f6cae8bc61a777365c2aaf5 Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Mon, 20 Apr 2020 12:24:42 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20spelling=20of=20=E2=80=9Cpositive?= =?UTF-8?q?=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As highlighted by Lintian, Debian’s QA tool. Signed-off-by: Stephen Kitt --- src/cpShape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpShape.c b/src/cpShape.c index 513b5353..e34b7b50 100644 --- a/src/cpShape.c +++ b/src/cpShape.c @@ -151,7 +151,7 @@ cpShapeGetFriction(const cpShape *shape) void cpShapeSetFriction(cpShape *shape, cpFloat friction) { - cpAssertHard(friction >= 0.0f, "Friction must be postive."); + cpAssertHard(friction >= 0.0f, "Friction must be positive."); cpBodyActivate(shape->body); shape->u = friction; }