Skip to content

Commit 320ee5a

Browse files
FAQ: fix typo; wrap paragraph (#34144)
1 parent 51a6408 commit 320ee5a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

doc/src/manual/faq.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,12 @@ have, it ends up having a substantial cost due to compilers (LLVM and GCC) not g
627627
around the added overflow checks. If this improves in the future, we could consider defaulting
628628
to checked integer arithmetic in Julia, but for now, we have to live with the possibility of overflow.
629629

630-
In the meantime, overflow-safe integer operations can be achieved through the use of external libraries such as [SaferIntegers.jl](https://github.com/JeffreySarnoff/SaferIntegers.jl). Note that, as stated previously, the use of these libraries signically increases the execution time of code using the checked integer types. However, for limited usage, this is far less of an issue than if it were used for all integer operations. You can follow the status of the discussion [here](https://github.com/JuliaLang/julia/issues/855).
630+
In the meantime, overflow-safe integer operations can be achieved through the use of external libraries
631+
such as [SaferIntegers.jl](https://github.com/JeffreySarnoff/SaferIntegers.jl). Note that, as stated
632+
previously, the use of these libraries significantly increases the execution time of code using the
633+
checked integer types. However, for limited usage, this is far less of an issue than if it were used
634+
for all integer operations. You can follow the status of the discussion
635+
[here](https://github.com/JuliaLang/julia/issues/855).
631636

632637

633638
### What are the possible causes of an `UndefVarError` during remote execution?

0 commit comments

Comments
 (0)