From 459d02abae1be35b44d88ddacf6b3e2bb6af6fb9 Mon Sep 17 00:00:00 2001 From: Ole Kroeger Date: Sun, 15 Aug 2021 15:01:22 +0200 Subject: [PATCH] fix some layers refs --- src/layers.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layers.jl b/src/layers.jl index 2bc52c35b..782c99931 100644 --- a/src/layers.jl +++ b/src/layers.jl @@ -100,7 +100,7 @@ end """ to_layer_m( frames, body; width, height, position) -Helper method for the [`JLayer`](@ref) macro +Helper method for the [`@JLayer`](@ref) macro Returns an expression that creates a layer and pushes the objects defined withing the body to the layer :transparent is the default while the other :opaque copies the video's background """ @@ -213,7 +213,7 @@ end remove_from_video(object::Object) Removes an object or a list of objects from the main video. -This is a helper method for the [`@to_layer!`](@ref) method and is supposed to be used internally +This is a helper method for the [`to_layer!`](@ref) method and is supposed to be used internally """ function remove_from_video(object::Object) filter!(x -> x != object, CURRENT_VIDEO[1].objects)