Skip to content

Commit

Permalink
fixed typos in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiq committed Sep 6, 2022
1 parent 7ab1bf8 commit dddaa6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/neighborlists.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The package provides a `neighborlist` function that implements this calculation.
```julia-repl
julia> x = [ rand(2) for _ in 1:10_000 ];
julia> CellListMap.neighborlist(x,-1.05)
julia> CellListMap.neighborlist(x,0.05)
24777-element Vector{Tuple{Int64, Int64, Float64}}:
(0, 62, 0.028481068525796384)
Expand All @@ -20,7 +20,7 @@ If periodic boundary conditions are used, the `Box` and `CellList` must be const
```julia-repl
julia> x = [ rand(2) for _ in 1:10_000 ];
julia> box = Box([0,1,1],0.1);
julia> box = Box([1,1,1],0.1);
julia> cl = CellList(x,box);
Expand Down

0 comments on commit dddaa6f

Please sign in to comment.