Skip to content

Commit

Permalink
Switch Void to Nothing in finalizer docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsamaroo committed Nov 17, 2019
1 parent 74f2de1 commit ac8a6ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/gcutils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Register a function `f(x)` to be called when there are no program-accessible ref
this function is unpredictable.
`f` must not cause a task switch, which excludes most I/O operations such as `println`.
`@schedule println("message")` or `ccall(:jl_, Void, (Any,), "message")` may be helpful for
`@schedule println("message")` or `ccall(:jl_, Nothing, (Any,), "message")` may be helpful for
debugging purposes.
"""
function finalizer(@nospecialize(f), @nospecialize(o))
Expand Down

0 comments on commit ac8a6ff

Please sign in to comment.