Skip to content

Commit

Permalink
Merge pull request #6 from waywardmonkeys/missing-semicolon
Browse files Browse the repository at this point in the history
asset_loader: Missing semicolon since not return value.
  • Loading branch information
simbleau authored Sep 12, 2023
2 parents a62a8ca + a07ca4c commit 11189c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assets/asset_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ impl AssetLoader for VelloVectorLoader {
size = format!("{:?}", (vello_vector.width, vello_vector.height)),
"finished parsing json asset"
);
load_context.set_default_asset(LoadedAsset::new(vello_vector))
load_context.set_default_asset(LoadedAsset::new(vello_vector));
}
_ => {}
}
Expand Down

0 comments on commit 11189c1

Please sign in to comment.