From e22d85b814267ed9535b5e290d5c009d54773751 Mon Sep 17 00:00:00 2001 From: Alex Ames Date: Wed, 19 Jun 2024 11:17:31 -0600 Subject: [PATCH] Typo fix --- docs/src/literate/tls/tls.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/literate/tls/tls.md b/docs/src/literate/tls/tls.md index 23894478..13667605 100644 --- a/docs/src/literate/tls/tls.md +++ b/docs/src/literate/tls/tls.md @@ -499,8 +499,8 @@ dynamically allocate memory to, and reset them at the end of a code block, just Julia's stack. Be warned though that Bumper.jl is (1) a rather young package with (likely) some bugs and (2) can easily lead to segfaults when used incorrectly. If you can live with the -risk, Bumper.jl is especially useful for causes we don't know ahead of time how large -a matrix to pre-allocate, and even more useful if we want to do many intermediate +risk, Bumper.jl is especially useful for cases where the size of the preallocated matrix +isn't known ahead of time, and even more useful if we want to do many intermediate allocations on the task, not just one. For our example, this isn't the case but let's nonetheless how one would use Bumper.jl here.