From 9f4ae040064034b07fcaf5fae6abd9443d2225e8 Mon Sep 17 00:00:00 2001 From: Frederik Hennig <frederik.hennig@fau.de> Date: Tue, 21 Jan 2025 17:37:20 +0100 Subject: [PATCH] fix typos --- user_manual/conf.py | 2 +- user_manual/guides/SparseSweeps.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/user_manual/conf.py b/user_manual/conf.py index 01a1b95..2bc06da 100644 --- a/user_manual/conf.py +++ b/user_manual/conf.py @@ -35,4 +35,4 @@ myst_enable_extensions = [ html_theme = 'sphinx_book_theme' html_static_path = ['zipped-examples'] -html_title = "waLBerla next-codegen" +html_title = "sfg-waLBerla" diff --git a/user_manual/guides/SparseSweeps.md b/user_manual/guides/SparseSweeps.md index a252253..159313f 100644 --- a/user_manual/guides/SparseSweeps.md +++ b/user_manual/guides/SparseSweeps.md @@ -25,7 +25,7 @@ In your C++ code, you must set up an index list which lists all cells the sweep Due to waLBerla's block-structured nature, the index list will actually be a collection of cell vectors, with one vector per block. The SFG library provides `sfg::SparseIndexList` for this, which is defined in `sfg/SparseIteration.hpp`. -The following code sample create and populate an index list, using a prediate here called `isOnSpiral`. +The following code sample creates and populates an index list, using a predicate here called `isOnSpiral`. The index list's internal block data ID must then be passed to the sweep's constructor. :::{literalinclude} ../examples/SparseSpiral/SparseSpiral.cpp -- GitLab