Skip to content

Commit 716e632

Browse files
committed
Remove unnecessary qualification
1 parent 7b2e3cb commit 716e632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_platform/src/future.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ crate::cfg::switch! {
1111
/// Blocks on the supplied `future`.
1212
/// This implementation will busy-wait until it is completed.
1313
/// Consider enabling the `async-io` or `futures-lite` features.
14-
pub fn block_on<T>(future: impl core::future::Future<Output = T>) -> T {
14+
pub fn block_on<T>(future: impl Future<Output = T>) -> T {
1515
use core::task::{Poll, Context};
1616

1717
// Pin the future on the stack.

0 commit comments

Comments
 (0)