From 527d669cebece4b7aba94a59ed557bb4bec3d7c1 Mon Sep 17 00:00:00 2001 From: Alberto Ramos Date: Sat, 28 Jan 2023 23:46:36 +0100 Subject: [PATCH] Corrected typo in documentation --- src/Groups/FundamentalSU3.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Groups/FundamentalSU3.jl b/src/Groups/FundamentalSU3.jl index 8a9270f..987a5ce 100644 --- a/src/Groups/FundamentalSU3.jl +++ b/src/Groups/FundamentalSU3.jl @@ -13,16 +13,16 @@ SU3fund(a::T, b::T, c::T) where T <: AbstractFloat = SU3fund{T}(complex(a), complex(b), complex(c)) """ - norm(a::SU3fund{T}) + dag(a::SU3fund{T}) Returns the conjugate of a fundamental element. """ dag(a::SU3fund{T}) where T <: AbstractFloat = SU3fund{T}(conj(a.t1), conj(a.t2), conj(a.t3)) """ - norm2(a::SU3fund{T}) + norm(a::SU3fund{T}) -Returns the norm squared of a fundamental element. Same result as dot(a,a). +Returns the norm of a fundamental element. Same result as dot(a,a). """ norm(a::SU3fund{T}) where T <: AbstractFloat = sqrt((abs2(a.t1) + abs2(a.t2) + abs2(a.t1)))