From 406b6b87a2954c96539458dfc9335733c2035118 Mon Sep 17 00:00:00 2001 From: Chuigda WhiteGive Date: Wed, 20 Sep 2023 22:51:07 +0800 Subject: [PATCH] Update recreation.md --- tutorial/book/src/swapchain/recreation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/book/src/swapchain/recreation.md b/tutorial/book/src/swapchain/recreation.md index 2bb79bd0..3b9d4888 100644 --- a/tutorial/book/src/swapchain/recreation.md +++ b/tutorial/book/src/swapchain/recreation.md @@ -167,7 +167,7 @@ Now try to run the program and resize the window to see if the framebuffer is in ## Handling minimization -There is another case where a swapchain may become out of data and that is a special kind of window resizing: window minimization. This case is special because it will result in a framebuffer size of `0`. In this tutorial we will handle that by not rendering frames while the window is minimized: +There is another case where a swapchain may become out of date and that is a special kind of window resizing: window minimization. This case is special because it will result in a framebuffer size of `0`. In this tutorial we will handle that by not rendering frames while the window is minimized: ```rust,noplaypen let mut app = unsafe { App::create(&window)? };