diff --git a/src/_powershell.jl b/src/_powershell.jl index 7ba9942..b1c7cc3 100644 --- a/src/_powershell.jl +++ b/src/_powershell.jl @@ -1,5 +1,5 @@ """ - clipboard_img() -> Matrix{<:Colorant} + _powershell() -> Matrix{<:Colorant} Paste an image from clipboard using powershell """ @@ -25,9 +25,8 @@ function _powershell() end end - """ - clipboard_img(img::Matrix{<:Colorant}) + _powershell(img::Matrix{<:Colorant}) Copy an image to clipboard using powershell """ diff --git a/src/_xclip.jl b/src/_xclip.jl index 2f092ab..6e67f0f 100644 --- a/src/_xclip.jl +++ b/src/_xclip.jl @@ -3,7 +3,7 @@ function _isavailable_xclip() end """ - clipboard_img() -> Matrix{<:Colorant} + _xclip() -> Matrix{<:Colorant} Paste an image from clipboard using xclip """ @@ -21,7 +21,7 @@ function _xclip() end """ - clipboard_img(img::Matrix{<:Colorant}) + _xclip(img::Matrix{<:Colorant}) Copy an image to clipboard using xclip """