Skip to content

Commit

Permalink
update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrodium committed Jun 15, 2021
1 parent 731d571 commit c3258cf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/_osascript.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
_osascript() -> Matrix{<:Colorant}
Paste an image from clipboard using osascript
Paste an image from clipboard using `osascript`
"""
function _osascript()
mktempdir() do dir
Expand All @@ -25,7 +25,7 @@ end
"""
_osascript(img::Matrix{<:Colorant})
Copy an image to clipboard using osascript
Copy an image to clipboard using `osascript`
"""
function _osascript(img::Matrix{<:Colorant})
mktempdir() do dir
Expand Down
4 changes: 2 additions & 2 deletions src/_powershell.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
_powershell() -> Matrix{<:Colorant}
Paste an image from clipboard using powershell
Paste an image from clipboard using `powershell`
"""
function _powershell()
mktempdir() do dir
Expand All @@ -28,7 +28,7 @@ end
"""
_powershell(img::Matrix{<:Colorant})
Copy an image to clipboard using powershell
Copy an image to clipboard using `powershell`
"""
function _powershell(img::Matrix{<:Colorant})
mktempdir() do dir
Expand Down
4 changes: 2 additions & 2 deletions src/_wlclipboard.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ end
"""
_wlclipboard() -> Matrix{<:Colorant}
Paste an image from clipboard using wl-paste
Paste an image from clipboard using `wl-paste`
"""
function _wlclipboard()
img_buf = IOBuffer()
Expand All @@ -23,7 +23,7 @@ end
"""
_wlclipboard(img::Matrix{<:Colorant})
Copy an image to clipboard using wl-copy
Copy an image to clipboard using `wl-copy`
"""
function _wlclipboard(img::Matrix{<:Colorant})
img_buf = IOBuffer()
Expand Down
4 changes: 2 additions & 2 deletions src/_xclip.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ end
"""
_xclip() -> Matrix{<:Colorant}
Paste an image from clipboard using xclip
Paste an image from clipboard using `xclip`
"""
function _xclip()
img_buf = IOBuffer()
Expand All @@ -23,7 +23,7 @@ end
"""
_xclip(img::Matrix{<:Colorant})
Copy an image to clipboard using xclip
Copy an image to clipboard using `xclip`
"""
function _xclip(img::Matrix{<:Colorant})
img_buf = IOBuffer()
Expand Down

0 comments on commit c3258cf

Please sign in to comment.