Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
adamslc committed Nov 5, 2023
1 parent d85f793 commit 5040c73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/grids/uniform_cartesian_grid.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ end
return (grid.upper_bounds .- grid.lower_bounds) ./ grid.num_cells
end

# TODO: inline this function once the offsets become singltons, and this
# TODO: inline this function once the offsets become singletons, and this
# function becomes performant
function cell_coords_to_phys_coords(
grid::UniformCartesianGrid{D},
Expand Down
4 changes: 2 additions & 2 deletions test/aqua_test.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@testitem "Aqua" tags = [:basics] begin
using Aqua
# The unbound_args test currently has a false positive, because it thinks the grid
# might be zero dimensional, in wich case T and U would be unbound. This could be
# might be zero dimensional, in which case T and U would be unbound. This could be
# fixed by using a construction like Tuple{T, Vararg{T, D1}} where D1 = D-1, but
# this is annoying becasue I want the value of D as a type parameter in several
# this is annoying because I want the value of D as a type parameter in several
# places. For now, I have just disabled the test.
Aqua.test_all(ParticleInCell2, unbound_args = false)
end

0 comments on commit 5040c73

Please sign in to comment.