From 9bbcfd5996691ec4a82fca9e1b3d7e2ae0e076f4 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 15 Aug 2021 17:02:28 +0200 Subject: [PATCH] Fix typo Closes #567 #617 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd306bac..928d41ab 100644 --- a/README.md +++ b/README.md @@ -309,7 +309,7 @@ The _frame_ in `eframe` stands both for the frame in which your egui app resides On Linux and Mac, Firefox will copy the WebGL render target from GPU, to CPU and then back again: https://bugzilla.mozilla.org/show_bug.cgi?id=1010527#c0 ### Why does my web app not fill the full width of the screen? -To alleviate the above mentioned performance issues the default max-width of an egui web app is 1024 points. You can change this by ovveriding the `fn max_size_points` of [`epi::App`](https://docs.rs/epi/latest/epi/trait.App.html). +To alleviate the above mentioned performance issues the default max-width of an egui web app is 1024 points. You can change this by overriding the `fn max_size_points` of [`epi::App`](https://docs.rs/epi/latest/epi/trait.App.html). ## Other