summaryrefslogtreecommitdiffstats
path: root/examples/integration
diff options
context:
space:
mode:
authorLibravatar rustrover <seekseat@126.com>2024-03-09 15:26:37 +0800
committerLibravatar rustrover <seekseat@126.com>2024-03-09 15:26:37 +0800
commit500ba962d17853bdef7aed49b150dbe3f45692e9 (patch)
tree52f7177fb7a31494a0d021c5f1c238145577a7c9 /examples/integration
parenta341e39df63e9c4860eb796bf5c4b6a9b41116a2 (diff)
downloadiced-500ba962d17853bdef7aed49b150dbe3f45692e9.tar.gz
iced-500ba962d17853bdef7aed49b150dbe3f45692e9.tar.bz2
iced-500ba962d17853bdef7aed49b150dbe3f45692e9.zip
fix some comments
Signed-off-by: rustrover <seekseat@126.com>
Diffstat (limited to 'examples/integration')
-rw-r--r--examples/integration/README.md2
-rw-r--r--examples/integration/src/main.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/integration/README.md b/examples/integration/README.md
index 996cdc17..aa3a6e94 100644
--- a/examples/integration/README.md
+++ b/examples/integration/README.md
@@ -14,7 +14,7 @@ cargo run --package integration_wgpu
```
### How to run this example with WebGL backend
-NOTE: Currently, WebGL backend is is still experimental, so expect bugs.
+NOTE: Currently, WebGL backend is still experimental, so expect bugs.
```sh
# 0. Install prerequisites
diff --git a/examples/integration/src/main.rs b/examples/integration/src/main.rs
index f53b5bf1..9cd801b2 100644
--- a/examples/integration/src/main.rs
+++ b/examples/integration/src/main.rs
@@ -170,7 +170,7 @@ pub fn main() -> Result<(), Box<dyn std::error::Error>> {
// Run event loop
event_loop.run(move |event, window_target| {
- // You should change this if you want to render continuosly
+ // You should change this if you want to render continuously
window_target.set_control_flow(ControlFlow::Wait);
match event {