Skip to content

Commit 96bd298

Browse files
committed
fix lints
1 parent 0f26b25 commit 96bd298

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ members = [
3535
# Internal tools that are not published.
3636
"tools/*",
3737
# Bevy's error codes. This is a crate so we can automatically check all of the code blocks.
38-
"errors",
38+
"errors", "dev/spec_v2",
3939
]
4040
exclude = [
4141
# Integration tests are not part of the workspace

crates/bevy_anti_alias/src/taa/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ impl Specializer<RenderPipeline> for TaaPipelineSpecializer {
330330
};
331331

332332
if key.reset {
333-
fragment.shader_defs.push("RESET".into())
333+
fragment.shader_defs.push("RESET".into());
334334
}
335335

336336
let color_target_state = ColorTargetState {

0 commit comments

Comments
 (0)