diff options
| author | tslil <tslil@posteo.de> | 2026-05-05 11:15:07 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-05-05 14:49:59 +0100 |
| commit | 89304b27ea81270684810c18d3315c9d399beaf9 (patch) | |
| tree | dbdf3ef92a09dec4b1434553355df8b99d9affbe /src/ast.rs | |
| parent | 1c47d2c4e0e9bd8ff38a7ef4939b78ac4722092b (diff) | |
address remaining TODO, fix issues with left-nesting for for and ext, add motivation blurb to the readme
Diffstat (limited to 'src/ast.rs')
| -rw-r--r-- | src/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ pub enum Signature { #[display("theory {{ {} }}", _0.iter().map(|f| f.to_string()).collect::<Vec<_>>().join(" , "))] Theory(Vec<Field<Signature>>), - #[display("{} -> {}", params.iter().map(|p| p.to_string()).collect::<Vec<_>>().join(", "), codomain)] + #[display("{} -> {}", params.iter().map(|p| p.to_string()).collect::<Vec<_>>().join(""), codomain)] Ext { params: Vec<Param>, codomain: Box<Signature>, |
