Skip to content

Commit

Permalink
Added missing backslash in doc/stdlib/math.rst (JuliaLang#18819)
Browse files Browse the repository at this point in the history
* Added missing backslash in doc/stdlib/math.rst for Element-wise left division operator example.

* Fixed that missing backslash in the docstrings for Element-wise left division operator example.
  • Loading branch information
justapoise authored and tkelman committed Oct 7, 2016
1 parent 9f80eab commit 38a63bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion base/docs/helpdb/Base.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2463,7 +2463,7 @@ julia> A = [1 2; 3 4]
1 2
3 4
julia> A .\ [1 2]
julia> A .\\ [1 2]
2×2 Array{Float64,2}:
1.0 1.0
0.333333 0.5
Expand Down
1 change: 1 addition & 0 deletions doc/stdlib/base.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1640,3 +1640,4 @@ Internals
.. Docstring generated from Julia source
Compile the given function ``f`` for the argument tuple (of types) ``args``\ , but do not execute it.

2 changes: 1 addition & 1 deletion doc/stdlib/math.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Mathematical Operators
1 2
3 4

julia> A . [1 2]
julia> A .\ [1 2]
2×2 Array{Float64,2}:
1.0 1.0
0.333333 0.5
Expand Down

0 comments on commit 38a63bd

Please sign in to comment.