Skip to content

Commit f6dbb18

Browse files
committed
Update comments
1 parent 89e7a0a commit f6dbb18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/source/getting_started/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ flag abbr function
6363
``--video_dir VIDEO_DIR`` Directory to write video
6464
``--config_file CONFIG_FILE`` Path to the custom configuration file
6565
``--log-level LOG_LEVEL`` Level of messages to Display, can be DEBUG / INFO / WARNING / ERROR / CRITICAL
66-
``--autoreload`` Automatically reload Python modules to pick up code changes across different files
66+
``--autoreload`` Automatically reload Python modules to pick up code changes across during an interactive embedding
6767
========================================================== ====== =====================================================================================================================================================================================================
6868

6969
custom_config

manimlib/scene/scene_embed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def reload_scene(self, embed_line: int | None = None) -> None:
142142
self.shell.run_line_magic("exit_raise", "")
143143

144144
def auto_reload(self):
145-
"""Enables IPython autoreload for automatic reloading of modules."""
145+
"""Enables reload the shell's module before all calls"""
146146
def pre_cell_func(*args, **kwargs):
147147
new_mod = ModuleLoader.get_module(self.shell.user_module.__file__, is_during_reload=True)
148148
self.shell.user_ns.update(vars(new_mod))

0 commit comments

Comments
 (0)