Skip to content

Commit

Permalink
Fixed default string for intitals mathml in PN (#854)
Browse files Browse the repository at this point in the history
## Summary of Changes
Fixed the default value for expression_mathml in the Initial struct for
PetriNets

### Related issues

Resolves ???

---------

Co-authored-by: Justin <[email protected]>
  • Loading branch information
Free-Quarks and Justin authored Mar 18, 2024
1 parent 9754f0c commit 40a4b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skema/skema-rs/mathml/src/acset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ pub struct Initial {
}

impl Default for Initial {
fn default() -> Self { Initial { target: "temp".to_string(), expression: "0".to_string(), expression_mathml: "<math><\\math>".to_string() } }
fn default() -> Self { Initial { target: "temp".to_string(), expression: "0".to_string(), expression_mathml: "<math></math>".to_string() } }
}

#[derive(
Expand Down

0 comments on commit 40a4b94

Please sign in to comment.