From 7b378a2ca9c27a3ebc0178106dd9e8af9057184d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Thu, 2 May 2024 17:16:11 +0200 Subject: [PATCH] Fix constructors in order docstrings --- src/comparison.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/comparison.jl b/src/comparison.jl index 6ca68979..8c9117e8 100644 --- a/src/comparison.jl +++ b/src/comparison.jl @@ -295,10 +295,10 @@ Monomial ordering defined by `compare(a, b, ::Type{Reverse{O}}) where {O} = compare(b, a, O)`. Reverse Lex Order defined in [CLO13, Exercise 2.2.9, p. 61] where it is abbreviated as *rinvlex*. -can be obtained as `Reverse(InverseLexOrder())`. +can be obtained as `Reverse{InverseLexOrder}`. The Graded Reverse Lex Order often abbreviated as *grevlex* order defined in [CLO13, Definition 2.2.6, p. 58] -can be obtained as `Graded(Reverse(InverseLexOrder()))`. +can be obtained as `Graded{Reverse{InverseLexOrder}}`. [CLO13] Cox, D., Little, J., & OShea, D. *Ideals, varieties, and algorithms: an introduction to computational algebraic geometry and commutative algebra*.