Skip to content

Commit

Permalink
chore: expose spec.merge method
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 21, 2024
1 parent 4cafe1b commit 6de998c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/spec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ impl Spec {
Ok(schema)
}

fn merge(&mut self, other: Spec) {
pub fn merge(&mut self, other: Spec) {
if !other.name.is_empty() {
self.name = other.name;
}
Expand Down

0 comments on commit 6de998c

Please sign in to comment.