Skip to content

Commit

Permalink
Update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Feb 2, 2024
1 parent e295a24 commit 3ca9433
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/fj-core/src/objects/any_object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ macro_rules! any_object {
}

/// Validate the object with a pre-defined validation configuration
pub fn validate_with_config(&self, config: &ValidationConfig, errors: &mut Vec<ValidationError>) {
pub fn validate_with_config(&self,
config: &ValidationConfig,
errors: &mut Vec<ValidationError>
) {
match self {
$(
Self::$ty(object) => object.validate_with_config(config, errors),
Expand Down

0 comments on commit 3ca9433

Please sign in to comment.