From fe9bdba7e0ef94c3fed2f23ac49342af8ce37a97 Mon Sep 17 00:00:00 2001 From: Antonello Lobianco Date: Sat, 15 Jun 2024 15:12:41 +0200 Subject: [PATCH] Update advanced.jl It looked like "groups" was a functionality of Interfaces.jl and not just a specific example --- test/advanced.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/advanced.jl b/test/advanced.jl index 32696b3..9d1e06f 100644 --- a/test/advanced.jl +++ b/test/advanced.jl @@ -1,8 +1,8 @@ # # Advanced #= -Here's an example of multi-argument interface using groups. -For mathematicians, a group is just a set of objects where you can perform `multiplication` and `inversion`, such that an element multiplies by its inverse yields a `neutral` element. +Here's an example of a multi-argument interface where we implement _groups_. +For mathematicians, a group is just a set of objects where you can perform `multiplication` and `inversion`, such that an element multiplied by its inverse yields a `neutral` element. !!! warning "Warning" This functionality is still experimental and might evolve in the future.