diff --git a/python-api-src/lib_unit.cpp b/python-api-src/lib_unit.cpp index 22d1f3427db03c8034c57ccbec254592b35304da..358dbbb59e1bf77e7a964d8575238fe7970c3ea1 100644 --- a/python-api-src/lib_unit.cpp +++ b/python-api-src/lib_unit.cpp @@ -6,7 +6,7 @@ void define_unit(py::module & m) { py::class_<Unit>(m, "Unit") .def_property_readonly("unit_type", &Unit::getType, "The :class:`library.UnitType` of the unit") - .def_property_readonly("position", &Unit::getPosition, "The class:`library.Point2D` of the unit") + .def_property_readonly("position", &Unit::getPosition, "The :class:`library.Point2D` of the unit") .def_property_readonly("tile_position", &Unit::getTilePosition, "The :class:`library.Point2DI` of the unit") .def_property_readonly("hit_points", &Unit::getHitPoints) .def_property_readonly("shields", &Unit::getShields)