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; }