Skip to content

Commit

Permalink
Escape backslash in ∘ documentation (#20118)
Browse files Browse the repository at this point in the history
This was rendering as `circ<tab>` in both the REPL and the web documentation.  Simple fix.
  • Loading branch information
mbauman authored and martinholters committed Jan 19, 2017
1 parent 0dfdc2c commit 71fa0a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ julia> [1:5;] |> x->x.^2 |> sum |> inv
f ∘ g
Compose functions: i.e. `(f ∘ g)(args...)` means `f(g(args...))`. The `∘` symbol can be
entered in the Julia REPL (and most editors, appropriately configured) by typing `\circ<tab>`.
entered in the Julia REPL (and most editors, appropriately configured) by typing `\\circ<tab>`.
Example:
```jldoctest
Expand Down

0 comments on commit 71fa0a6

Please sign in to comment.