From c2951e019492b33d79ffecfaa61a2fe0d4a7d3ff Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sun, 14 Apr 2024 08:12:39 +0700 Subject: [PATCH] docs: Fix copy/paste error in changelog Due to a copy/paste error a comment in the migration in the changelog mentioned "window events" in a context that was clearly meant for device events. This commit fixes this issue. --- src/changelog/unreleased.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/changelog/unreleased.md b/src/changelog/unreleased.md index f79f87d8..827ba142 100644 --- a/src/changelog/unreleased.md +++ b/src/changelog/unreleased.md @@ -159,7 +159,7 @@ changelog entry. } fn device_event(&mut self, event_loop: &ActiveEventLoop, device_id: DeviceId, event: DeviceEvent) { - // Handle window event. + // Handle device event. } fn about_to_wait(&mut self, event_loop: &ActiveEventLoop) {