Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix codespell #381

Merged
merged 2 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[codespell]
skip = .git,*.ipynb,*.bib,*.ps,*.patch,*/Submodules,*/Build,*/sphinx/landing
skip = .git,*.ipynb,*.bib,*.ps,*.patch,*/Submodules,*/Build,*/sphinx/landing,Make.PeleLMeX
#,*/build,*/tmp_build_dir,plt*,chk*,__pycache__,.ccls,.ccls-cache,tran.dat,GNUmakefile,*.pdf,Testing,sphinx_doc,*/html,*.cti
ignore-words = .codespell-ignore-words
2 changes: 1 addition & 1 deletion Docs/sphinx/manual/Tutorials_HotBubble.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Introduction

At the core of `PeleLMeX` algorithm is a variable-density, low Mach number Navier-Stokes solver based
on a fractional step approach. This short ``HotBubble`` tutorial presents the case of a rising light bubble under
the influence of a gravity field, which exercice this algorithm without the added complexity
the influence of a gravity field, which exercise this algorithm without the added complexity
of chemical reactions or embedded boundaries.

.. _sec:TUTO_HB::PrepStep:
Expand Down
2 changes: 1 addition & 1 deletion Source/PeleLMeX_Projection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ PeleLM::doNodalProject(
}
}

// Average down grap P
// Average down grad P
for (int lev = finest_level - 1; lev >= 0; --lev) {
auto* ldataFine_p = getLevelDataPtr(lev + 1, AmrNewTime);
auto* ldataCrse_p = getLevelDataPtr(lev, AmrNewTime);
Expand Down
Loading