Skip to content

Commit

Permalink
Fixed a typo. (JuliaLang#39914)
Browse files Browse the repository at this point in the history
  • Loading branch information
motchy869 committed Mar 5, 2021
1 parent e49567f commit 6cea0d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/manual/noteworthy-differences.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ For users coming to Julia from R, these are some noteworthy differences:
meaning within `[ ]`, something to watch out for. `;` can be used to separate expressions on a
single line, but are not strictly necessary in many cases, and are more an aid to readability.
* In Julia, the operator [``](@ref xor) ([`xor`](@ref)) performs the bitwise XOR operation, i.e.
[`^`](@ref) in C/C++. Also, the bitwise operators do not have the same precedence as C/++, so
[`^`](@ref) in C/C++. Also, the bitwise operators do not have the same precedence as C/C++, so
parenthesis may be required.
* Julia's [`^`](@ref) is exponentiation (pow), not bitwise XOR as in C/C++ (use [``](@ref xor), or
[`xor`](@ref), in Julia)
Expand Down

0 comments on commit 6cea0d2

Please sign in to comment.