From dd5e3671a961022e64793dd1064bd44003c8edf1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 01:16:06 +0000 Subject: [PATCH 1/2] Bump crate-ci/typos from 1.19.0 to 1.20.4 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.19.0 to 1.20.4. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.19.0...v1.20.4) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/SpellCheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index e8f2271f..0e051c18 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -10,4 +10,4 @@ jobs: - name: Checkout Actions Repository uses: actions/checkout@v4 - name: Check spelling - uses: crate-ci/typos@v1.19.0 + uses: crate-ci/typos@v1.20.4 From cf96f10a6f0771ab22d3b965b6d200d8deb4c2d9 Mon Sep 17 00:00:00 2001 From: Hendrik Ranocha Date: Tue, 9 Apr 2024 13:17:22 +0200 Subject: [PATCH 2/2] fix typo --- src/RootedTrees.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/RootedTrees.jl b/src/RootedTrees.jl index 31b732b5..b174dc36 100644 --- a/src/RootedTrees.jl +++ b/src/RootedTrees.jl @@ -1077,7 +1077,7 @@ end Create all splitting forests and subtrees associated to ordered subtrees of a rooted tree `t`. -Seee also [`SplittingIterator`](@ref). +See also [`SplittingIterator`](@ref). # References @@ -1431,7 +1431,7 @@ function elementary_differential_latexstring(t::RootedTree) return latexstring(rec_elementary_differential(t)) end -# Function used to go recursively through the RootedTree +# Function used to go recursively through the RootedTree # to generate the elementary differential of the tree. function rec_elementary_differential(t::RootedTree) subtree_strings = String[] @@ -1489,7 +1489,7 @@ function elementary_weight_latexstring(t::RootedTree) return latexstring(join(substrings)) end -# Function used to go recursively through the RootedTree +# Function used to go recursively through the RootedTree # to generate the elementary weight of the tree. function elm_weights_rec!(t::RootedTree, last_index, a) alphabet = copy(a) @@ -1523,7 +1523,7 @@ function elm_weights_rec!(t::RootedTree, last_index, a) indices = vcat(indices, idx) push!(substrings, substring) end - # Specialcase: The identical trees were the last ones + # Specialcase: The identical trees were the last ones if tree_count > 1 if length(prev_tree.level_sequence) == 1 substrings[end] = "$(substrings[end])^{$tree_count}"