From 20ea80d04474760194e067e8bedffacf673c024d Mon Sep 17 00:00:00 2001 From: Ronny Bergmann Date: Wed, 16 Oct 2024 19:03:58 +0200 Subject: [PATCH] Switch to JuliaFormatter 2.0 --- docs/make.jl | 1 + src/interface.jl | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index bf4a765..cf1ced3 100755 --- a/docs/make.jl +++ b/docs/make.jl @@ -54,6 +54,7 @@ if "--quarto" ∈ ARGS Pkg.build("IJulia") # build `IJulia` to the right version. Pkg.activate(@__DIR__) # but return to the docs one before run(`quarto render $(tutorials_folder)`) + return nothing end else # fallback to at least create empty files for Optimize and Implement # touch(joinpath(@__DIR__, "src/tutorials/Optimize.md")) diff --git a/src/interface.jl b/src/interface.jl index 97b223a..718b3aa 100644 --- a/src/interface.jl +++ b/src/interface.jl @@ -567,8 +567,9 @@ All kwyword arguments are passed on to the corresponding call """ @doc "$(_doc_is_vector)" -ManifoldsBase.is_vector(G::LieGroup, X; kwargs...) = - ManifoldsBase.is_point(LieAlgebra(G), X; kwargs...) +ManifoldsBase.is_vector(G::LieGroup, X; kwargs...) = ManifoldsBase.is_point( + LieAlgebra(G), X; kwargs... +) @doc "$(_doc_is_vector)" function ManifoldsBase.is_vector(G::LieGroup{𝔽,O}, e::Identity{O}, X; kwargs...) where {𝔽,O}