From 99ac663cc502acf1f1e1bc447cecf0d32c78a557 Mon Sep 17 00:00:00 2001 From: Menno Fraters Date: Thu, 1 Aug 2024 11:48:05 +0200 Subject: [PATCH] Fix typos. --- CHANGELOG.md | 2 +- .../contributing_to_the_documentation/important_syntax.md | 4 ++-- .../user_manual/installation/installing_prerequisites.md | 2 +- tests/unit_tests/unit_test_world_builder.cc | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d94bbd8b3..705b485c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,7 +59,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - A new input parameter and associated functions which define the maximum depth of a model. This allows the world builder to create a complete picture of the world. \[Menno Fraters; 2021-11-08; [#367](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/367) and [#331](https://github.com/GeodynamicWorldBuilder/WorldBuilder/issues/331)\] - A one of type which can create a JSON schema entry where one of several types can be chosen. \[Menno Fraters; 2022-03-26; [#396](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/396)\] - A value at points type which can read in an array containing a value and a list of points from the input. \[Menno Fraters; 2022-03-26; [#396](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/396)\] -- A surface object which can take an array of value at points and create an interpolation through delaunay triangulation (with the delaunator library which was added) and a KD-Tree and barycentric linear interplation. \[Menno Fraters, KD-Tree with help of Oliver Kreylos; 2022-03-26; [#396](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/396)\] +- A surface object which can take an array of value at points and create an interpolation through delaunay triangulation (with the delaunator library which was added) and a KD-Tree and barycentric linear interpolation. \[Menno Fraters, KD-Tree with help of Oliver Kreylos; 2022-03-26; [#396](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/396)\] - The option to make min and max depth into variable surfaces for all area features (continental plate, oceanic plate and mantle layer) and their temperature, composition and grain plugins. \[Menno Fraters; 2022-03-26; [#366](https://github.com/GeodynamicWorldBuilder/WorldBuilder/issues/366) and [#396](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/396)\] - The option to the WordBuilderApp to input 3D spherical coordinates \[Menno Fraters; 2022-03-26; [#396](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/396)\] - An equal operator (operator==) for the point class, which compares two points with an espilon. \[Menno Fraters; 2022-03-26; [#396](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/396)\] diff --git a/doc/sphinx/developer_manual/contributing_to_the_documentation/important_syntax.md b/doc/sphinx/developer_manual/contributing_to_the_documentation/important_syntax.md index 198350601..3f7d6cf72 100644 --- a/doc/sphinx/developer_manual/contributing_to_the_documentation/important_syntax.md +++ b/doc/sphinx/developer_manual/contributing_to_the_documentation/important_syntax.md @@ -164,7 +164,7 @@ Adding figures looks similar to notes and todo's: ::::{code-block} md :::{figure} ../../../../doc/sphinx/_static/images/user_manual/basic_starter_tutorial/BST_19.png -:name: BST_19_synatx +:name: BST_19_syntax :alt: Basic Starter Tutorial section 19 highres result. :align: center @@ -173,7 +173,7 @@ Basic Starter Tutorial section 19 high resolution result. This has 8 times the r :::: :::{figure} ../../../../doc/sphinx/_static/images/user_manual/basic_starter_tutorial/BST_19.png -:name: BST_19_synatx +:name: BST_19_syntax :alt: Basic Starter Tutorial section 19 highres result. :align: center diff --git a/doc/sphinx/user_manual/installation/installing_prerequisites.md b/doc/sphinx/user_manual/installation/installing_prerequisites.md index 2472b64b8..9f7436799 100644 --- a/doc/sphinx/user_manual/installation/installing_prerequisites.md +++ b/doc/sphinx/user_manual/installation/installing_prerequisites.md @@ -71,7 +71,7 @@ There are three main ways to install on Windows. The recommended way is to use Linux subsystems for Windows (see ). In this case, start Linux in the Windows terminal and follow the Linux installation description. -If you want to have a native installation we recomend using Visual Studio to compile the world builder. The only problem that we are aware of is using Fortran with Visual Studio. The problem here is that you need to install a Fortran compiler somehow, so if you know how to do that, please contribute. +If you want to have a native installation we recommend using Visual Studio to compile the world builder. The only problem that we are aware of is using Fortran with Visual Studio. The problem here is that you need to install a Fortran compiler somehow, so if you know how to do that, please contribute. ::::{tab-set} diff --git a/tests/unit_tests/unit_test_world_builder.cc b/tests/unit_tests/unit_test_world_builder.cc index c3fe43077..a8d7aa44f 100644 --- a/tests/unit_tests/unit_test_world_builder.cc +++ b/tests/unit_tests/unit_test_world_builder.cc @@ -890,7 +890,7 @@ TEST_CASE("WorldBuilder World random") approval_tests.emplace_back(dist(world1.get_random_number_engine())); approval_tests.emplace_back(dist(world1.get_random_number_engine())); - // test whether the seed indeed changes the resuls + // test whether the seed indeed changes the results WorldBuilder::World world2(file_name, false, "", 2); approval_tests.emplace_back(world2.get_random_number_engine()()); approval_tests.emplace_back(world2.get_random_number_engine()());