diff options
author | seancarroll <seanc28@gmail.com> | 2021-01-12 23:29:39 -0600 |
---|---|---|
committer | seancarroll <seanc28@gmail.com> | 2021-01-12 23:29:39 -0600 |
commit | 859d57e497c726ef39f283e49387d43aa474d7ac (patch) | |
tree | ebf3d9c267e698b8c4805864c8c78e9dc8b98c21 /src/attributes/shape.rs | |
parent | 499713a1d63564be320030dc98b3879b66390bb8 (diff) | |
download | dotavious-859d57e497c726ef39f283e49387d43aa474d7ac.zip |
support subgraphs
Diffstat (limited to 'src/attributes/shape.rs')
-rw-r--r-- | src/attributes/shape.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/attributes/shape.rs b/src/attributes/shape.rs index be37ccc..3c7469e 100644 --- a/src/attributes/shape.rs +++ b/src/attributes/shape.rs @@ -91,9 +91,9 @@ impl<'a> DotString<'a> for Shape { Shape::Invtriangle => "invtriangle".into(), Shape::Invtrapezium => "invtrapezium".into(), Shape::Invhouse => "invhouse".into(), - Shape::Mdiamond => "mdiamond".into(), - Shape::Msquare => "msquare".into(), - Shape::Mcircle => "mcircle".into(), + Shape::Mdiamond => "Mdiamond".into(), + Shape::Msquare => "Msquare".into(), + Shape::Mcircle => "Mcircle".into(), Shape::Record => "record".into(), Shape::Rect => "rect".into(), Shape::Rectangle => "rectangle".into(), |