Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rudof_lib/src/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ impl Display for OutputConvertFormat {
OutputConvertFormat::ShExC => write!(dest, "shexc"),
OutputConvertFormat::ShExJ => write!(dest, "shexj"),
OutputConvertFormat::Turtle => write!(dest, "turtle"),
OutputConvertFormat::PlantUML => write!(dest, "uml"),
OutputConvertFormat::PlantUML => write!(dest, "plantuml"),
OutputConvertFormat::Html => write!(dest, "html"),
OutputConvertFormat::Png => write!(dest, "png"),
OutputConvertFormat::Svg => write!(dest, "svg"),
Expand All @@ -173,7 +173,7 @@ impl FromStr for OutputConvertFormat {
"shexc" => Ok(OutputConvertFormat::ShExC),
"shexj" => Ok(OutputConvertFormat::ShExJ),
"turtle" => Ok(OutputConvertFormat::Turtle),
"uml" => Ok(OutputConvertFormat::PlantUML),
"plantuml" => Ok(OutputConvertFormat::PlantUML),
"html" => Ok(OutputConvertFormat::Html),
"svg" => Ok(OutputConvertFormat::Svg),
"png" => Ok(OutputConvertFormat::Png),
Expand Down
Loading