Skip to content

Commit

Permalink
fix describe when using #[implements] (davidcole1340#169)
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
davidcole1340 authored Oct 22, 2022
1 parent ad048d0 commit 1f0582b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/macros/src/module.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ impl Describe for Class {
let interfaces = self
.interfaces
.iter()
.map(|iface| quote! { #iface.into(), });
.map(|iface| quote! { #iface.into() });
let properties = self.properties.iter().map(|d| d.describe());
let mut methods: Vec<_> = self.methods.iter().map(Describe::describe).collect();
let docs = self.docs.iter().map(|c| {
Expand Down

0 comments on commit 1f0582b

Please sign in to comment.