Skip to content

Commit

Permalink
fix doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Sep 16, 2024
1 parent a054581 commit e74b92e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions experimental/ExteriorAlgebra/src/ExteriorAlgebra.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ If `K` is a field, this function will use a special implementation in Singular.
# Examples
```jldoctest
julia> E, (e1,e2) = exterior_algebra(QQ, 2);
julia> E, (x1,x2) = exterior_algebra(QQ, 2);
julia> e2*e1
-e1*e2
julia> x2*x1
-x1*x2
julia> (e1+e2)^2 # over fields, result is automatically reduced!
julia> (x1+x2)^2 # over fields, result is automatically reduced!
0
julia> E, (x,y) = exterior_algebra(QQ, ["x","y"]);
Expand Down

0 comments on commit e74b92e

Please sign in to comment.