From 47b2c5b4685615261cf5a73f54de11d0145c3b9a Mon Sep 17 00:00:00 2001 From: Gonzalo Casas Date: Fri, 14 Jun 2024 10:30:35 +0200 Subject: [PATCH] Update src/compas_fab/backends/pybullet/client.py --- src/compas_fab/backends/pybullet/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compas_fab/backends/pybullet/client.py b/src/compas_fab/backends/pybullet/client.py index 112dd8014..f56082b3b 100644 --- a/src/compas_fab/backends/pybullet/client.py +++ b/src/compas_fab/backends/pybullet/client.py @@ -827,7 +827,7 @@ def _get_geometry_args(path, concavity=False, scale=1.0): class AnalyticalPyBulletClient(PyBulletClient): - """Combination of PyBullet as the client for COllision Detection and Analytical Inverse Kinematics.""" + """Combination of PyBullet as the client for Collision Detection and Analytical Inverse Kinematics.""" def __init__(self, connection_type="gui", verbose=False): PyBulletClient.__init__(self, connection_type=connection_type, verbose=verbose)