From 2000acc148962493dc6491bfd86f03f8096a1c67 Mon Sep 17 00:00:00 2001 From: Hendrik Ranocha Date: Sat, 7 Oct 2023 06:19:48 +0200 Subject: [PATCH] fix typo and ignore wrapper --- .typos.toml | 4 ++++ docs/src/introduction.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .typos.toml diff --git a/.typos.toml b/.typos.toml new file mode 100644 index 0000000..2aa8e62 --- /dev/null +++ b/.typos.toml @@ -0,0 +1,4 @@ + +[files] +# ignore possible typos in the wrappers generated automatically +extend-exclude = ["src/LibP4est.jl"] diff --git a/docs/src/introduction.md b/docs/src/introduction.md index ad530a3..7f91220 100644 --- a/docs/src/introduction.md +++ b/docs/src/introduction.md @@ -87,7 +87,7 @@ p4est_connectivity_destroy(connectivity) p4est_destroy(p4est) ``` -You may also use the `PonterWrapper` to set variables in `struct`s. Here we +You may also use the `PointerWrapper` to set variables in `struct`s. Here we set the user data pointer in the `p4est_t` `struct` to point to some data: ```@repl using P4est, MPI; MPI.Init()