We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
poll_once
1 parent 30cf456 commit 6fd5194Copy full SHA for 6fd5194
content/learn/migration-guides/0.12-to-0.13.md
@@ -1333,11 +1333,11 @@ bevy = "0.12.0"
1333
- futures-lite = "1.4.0"
1334
```
1335
1336
-- Replace `futures_lite` imports with `bevy::tasks::future`.
+- Replace `futures_lite` imports with `bevy::tasks::futures_lite`.
1337
1338
```diff
1339
-- use futures_lite::poll_once;
1340
-+ use bevy::tasks::future::poll_once;
+- use futures_lite::future::poll_once;
++ use bevy::tasks::futures_lite::future::poll_once;
1341
1342
1343
### [Rename `TextAlignment` to `JustifyText`.](https://github.com/bevyengine/bevy/pull/10854)
0 commit comments