plural "windows" in message where it should be singular "window"
This commit is contained in:
ickk 2023-08-31 17:20:53 +10:00 committed by GitHub
parent 23598d7bec
commit 4bf9b7bde3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ pub fn exit_on_primary_closed(
windows: Query<(), (With<Window>, With<PrimaryWindow>)>,
) {
if windows.is_empty() {
bevy_utils::tracing::info!("Primary windows was closed, exiting");
bevy_utils::tracing::info!("Primary window was closed, exiting");
app_exit_events.send(AppExit);
}
}