From 55e97f8334afadd90184388ef46ebafb6403ce3b Mon Sep 17 00:00:00 2001 From: skierpage Date: Fri, 11 Mar 2022 15:58:01 -0800 Subject: [PATCH] Correct program output ("Steps", not "Times") Since 985c1feb4 , hello-compute has output "Steps: ...", not "Times: ..." --- wgpu/examples/hello-compute/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu/examples/hello-compute/README.md b/wgpu/examples/hello-compute/README.md index 93eaa4b8c7..f33845624b 100644 --- a/wgpu/examples/hello-compute/README.md +++ b/wgpu/examples/hello-compute/README.md @@ -18,5 +18,5 @@ RUST_LOG=hello_compute cargo run --example hello-compute 1 4 3 295 ## Example Output ``` -[2020-04-25T11:15:33Z INFO hello_compute] Times: [0, 2, 7, 55] +[2020-04-25T11:15:33Z INFO hello_compute] Steps: [0, 2, 7, 55] ```