Skip to content

Commit

Permalink
fix code quote in docs (fredrikekre) [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
rfourquet committed Sep 2, 2017
1 parent 82a2f9f commit 6b2fcb8
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 @@ -236,7 +236,7 @@ For users coming to Julia from R, these are some noteworthy differences:
`BigInt` type. There are no numeric literal suffixes, such as `L`, `LL`, `U`, `UL`, `ULL` to indicate
unsigned and/or signed vs. unsigned. Decimal literals are always signed, and hexadecimal literals
(which start with `0x` like C/C++), are unsigned, unless when they encode more than 128 bits,
in which case they are of type ``BigInt``. Hexadecimal literals also, unlike C/C++/Java
in which case they are of type `BigInt`. Hexadecimal literals also, unlike C/C++/Java
and unlike decimal literals in Julia, have a type based on the *length* of the literal, including
leading 0s. For example, `0x0` and `0x00` have type [`UInt8`](@ref), `0x000` and `0x0000` have type
[`UInt16`](@ref), then literals with 5 to 8 hex digits have type `UInt32`, 9 to 16 hex digits type
Expand Down

0 comments on commit 6b2fcb8

Please sign in to comment.