diff --git a/manim_slides/slide/base.py b/manim_slides/slide/base.py index 8dbc38f0..72383e3f 100644 --- a/manim_slides/slide/base.py +++ b/manim_slides/slide/base.py @@ -305,7 +305,7 @@ def next_slide( :param skip_animations: Exclude the next slide from the output. - If `manim` is used, this is also passed to `:meth:`Scene.next_section`, + If `manim` is used, this is also passed to :meth:`Scene.next_section`, which will avoid rendering the corresponding animations. .. seealso:: @@ -348,7 +348,7 @@ def next_slide( ``manim-slides convert --to=pptx``. :param dedent_notes: If set, apply :func:`textwrap.dedent` to notes. - :param src: + :param pathlib.Path src: An optional path to a video file to include as next slide. The video will be copied into the output folder, but no rescaling diff --git a/manim_slides/slide/manim.py b/manim_slides/slide/manim.py index fb8a7a2b..a5287c92 100644 --- a/manim_slides/slide/manim.py +++ b/manim_slides/slide/manim.py @@ -15,7 +15,7 @@ class Slide(BaseSlide, Scene): # type: ignore[misc] for slides rendering. :param args: Positional arguments passed to scene object. - :param output_folder: Where the slide animation files should be written. + :param pathlib.Path output_folder: Where the slide animation files should be written. :param kwargs: Keyword arguments passed to scene object. :cvar bool disable_caching: :data:`False`: Whether to disable the use of cached animation files.