From 37a05094ea446ef2c9fc423e5c63eb5f2b1dc707 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 11 Dec 2024 07:17:20 -0600 Subject: [PATCH] Small comment changes --- manimlib/config.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/manimlib/config.py b/manimlib/config.py index 274b772a..1be93b27 100644 --- a/manimlib/config.py +++ b/manimlib/config.py @@ -76,12 +76,12 @@ def parse_cli(): parser.add_argument( "-l", "--low_quality", action="store_true", - help="Render at a low quality (for faster rendering)", + help="Render at 480p", ) parser.add_argument( "-m", "--medium_quality", action="store_true", - help="Render at a medium quality", + help="Render at 720p", ) parser.add_argument( "--hd", @@ -165,8 +165,9 @@ def parse_cli(): ) parser.add_argument( "-e", "--embed", - help="Creates a new file where the line `self.embed` is inserted " + \ - "at the corresponding line number" + metavar="LINE_NUMBER", + help="Adds a breakpoint at the inputted file dropping into an " + \ + "interactive iPython session at that point of the code." ) parser.add_argument( "-r", "--resolution",