From 010f9bacbba994f054bcee58420856d56245e3cb Mon Sep 17 00:00:00 2001 From: Yuval Tassa Date: Sun, 2 Mar 2025 01:19:38 -0800 Subject: [PATCH] Fix typo in Python API docs. PiperOrigin-RevId: 732600862 Change-Id: Ie9a8db9555ac3e233d29a10d289b71745d644cb2 --- doc/python.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/python.rst b/doc/python.rst index 163d7896..6ccc59e5 100644 --- a/doc/python.rst +++ b/doc/python.rst @@ -556,7 +556,7 @@ It is possible to combine multiple specs by using attachments. The following opt The default behavior of attaching is to not copy, so all the child references (except for the worldbody) are still valid in the parent and therefore modifying the child will modify the parent. This is not true for the attach :ref:`attach` and :ref:`replicate` meta-elements in MJCF, which create deep copies while -attaching. However, it is possible to override the default behavior by setting ``spec.copy_during_attaching`` to +attaching. However, it is possible to override the default behavior by setting ``spec.copy_during_attach`` to ``True``. In this case, the child spec is copied and the references to the child will not point to the parent. .. code-block:: python