From 15e294692047ebc4835279c3b2e4865f562d3900 Mon Sep 17 00:00:00 2001 From: Fe-r-oz Date: Tue, 22 Oct 2024 15:31:40 +0500 Subject: [PATCH] fix typo --- src/ecc/codes/group_presentation.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ecc/codes/group_presentation.jl b/src/ecc/codes/group_presentation.jl index d6d6fdb3b..2b7b8e7ce 100644 --- a/src/ecc/codes/group_presentation.jl +++ b/src/ecc/codes/group_presentation.jl @@ -5,7 +5,7 @@ Implemented as a package extension with Oscar. Check the [QuantumClifford docume function twobga_from_fp_group(args...) ext = Base.get_extension(QuantumClifford, :QuantumCliffordOscarExt) if isnothing(ext) - throw("The `twobga_from_fp_group` depends on the package `Oscar` but you have not installed or imported it yet. Immediately after you import `Oscar`, the `LiftedCode` will be available.") + throw("The `twobga_from_fp_group` depends on the package `Oscar` but you have not installed or imported it yet. Immediately after you import `Oscar`, the `twobga_from_fp_group` will be available.") end return ext.twobga_from_fp_group(args...) end