diff --git a/docs/source/getting_started/configuration.rst b/docs/source/getting_started/configuration.rst index d62fcba3..9b1a147f 100644 --- a/docs/source/getting_started/configuration.rst +++ b/docs/source/getting_started/configuration.rst @@ -43,6 +43,7 @@ flag abbr function ``--hd`` Render at a 1080p quality ``--uhd`` Render at a 4k quality ``--full_screen`` ``-f`` Show window in full screen +``--presenter_mode`` ``-p`` Scene will stay paused during wait calls until space bar or right arrow is hit, like a slide show ``--save_pngs`` ``-g`` Save each frame as a png ``--save_as_gif`` ``-i`` Save the video as gif ``--transparent`` ``-t`` Render to a movie file with an alpha channel @@ -58,7 +59,7 @@ flag abbr function ``--frame_rate FRAME_RATE`` Frame rate, as an integer ``--color COLOR`` ``-c`` Background color ``--leave_progress_bars`` Leave progress bars displayed in terminal -``--video_dir VIDEO_DIR`` directory to write video +``--video_dir VIDEO_DIR`` Directory to write video ``--config_file CONFIG_FILE`` Path to the custom configuration file ========================================================== ====== ================================================================================================================================================================================================= diff --git a/manimlib/config.py b/manimlib/config.py index e22d2ea3..a2e68c51 100644 --- a/manimlib/config.py +++ b/manimlib/config.py @@ -23,7 +23,7 @@ def parse_cli(): module_location.add_argument( "file", nargs="?", - help="path to file holding the python code for the scene", + help="Path to file holding the python code for the scene", ) parser.add_argument( "scene_names", @@ -68,7 +68,7 @@ def parse_cli(): parser.add_argument( "-p", "--presenter_mode", action="store_true", - help="scene will stay paused during wait calls until " + help="Scene will stay paused during wait calls until " "space bar or right arrow is hit, like a slide show" ) parser.add_argument(