Skip to content

Commit

Permalink
added ; to df in missing_if docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
drizk1 committed Oct 3, 2023
1 parent 792dea0 commit e46501a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docstrings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2454,7 +2454,7 @@ Replace a specific `value` with `missing` in `x`.
## Examples
```jldoctest
julia> df = DataFrame(a = [1, missing, 3, 4], b = ["apple", "apple", "banana", "cherry"])
julia> df = DataFrame(a = [1, missing, 3, 4], b = ["apple", "apple", "banana", "cherry"]);
julia> @chain df begin
@mutate(a = missing_if(a, 4), b = missing_if(b, "apple"))
Expand Down

0 comments on commit e46501a

Please sign in to comment.