From 91216d82543f1f14eed7b2750403211faf2e55e7 Mon Sep 17 00:00:00 2001 From: Marcin Jahn <10273406+marcinjahn@users.noreply.github.com> Date: Mon, 20 May 2024 01:29:38 +0200 Subject: [PATCH] Update list_widgets.md (#1742) --- book/src/list_widgets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/list_widgets.md b/book/src/list_widgets.md index 685501f7734c..8d70c26b720b 100644 --- a/book/src/list_widgets.md +++ b/book/src/list_widgets.md @@ -50,7 +50,7 @@ The following figure demonstrates how this works in practice. We start by defining and filling up our model. The model is an instance of [`gio::ListStore`](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/gio/struct.ListStore.html). The main limitation here is that `gio::ListStore` only accepts GObjects. -So let's create a custom GObject `IntegerObject` that which is initialized with a number. +So let's create a custom GObject `IntegerObject` that is initialized with a number. Filename: listings/list_widgets/2/integer_object/mod.rs