diff --git a/src/descriptors.rs b/src/descriptors.rs index 512e933..cd69fc6 100644 --- a/src/descriptors.rs +++ b/src/descriptors.rs @@ -55,7 +55,7 @@ impl ClassName<'_> { impl<'a> fmt::Display for ClassName<'a> { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { let segments: Vec> = self.segments.iter().map(|s| s.name.clone()).collect(); - write!(f, "{};", segments.join("/")) + write!(f, "{}", segments.join("/")) } }