From d12a73892d8361d48cbdf05cd41ee12571955ea6 Mon Sep 17 00:00:00 2001 From: Leandro Martinez Date: Mon, 15 Apr 2024 17:11:57 -0300 Subject: [PATCH] remove reassignment of cl from docs --- docs/src/LowLevel.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/LowLevel.md b/docs/src/LowLevel.md index f34859c3..36bccda5 100644 --- a/docs/src/LowLevel.md +++ b/docs/src/LowLevel.md @@ -491,7 +491,7 @@ aux = CellListMap.AuxThreaded(cl) for i in 1:nsteps x = ... # new coordinates box = Box(sides,cutoff) # perhaps the box has changed - cl = UpdateCellList!(x,box,cl,aux) + UpdateCellList!(x,box,cl,aux) # modifies cl map_pairwise!(...) end ``` @@ -503,7 +503,7 @@ aux = CellListMap.AuxThreaded(cl) for i in 1:nsteps x = ... # new coordinates box = Box(sides,cutoff) # perhaps the box has changed - cl = UpdateCellList!(x,y,box,cl,aux) + UpdateCellList!(x,y,box,cl,aux) # modifies cl map_pairwise(...) end ```