From 10acb2aa6c409c84adbd819b8b5389fc0edb7a90 Mon Sep 17 00:00:00 2001 From: Keegan Conlee Date: Mon, 2 Sep 2024 14:49:46 -0500 Subject: [PATCH] Fix typo: replace `:` with `=` in tips and tricks grid section --- src/tricks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tricks.md b/src/tricks.md index 51d8a31..a8e1e64 100644 --- a/src/tricks.md +++ b/src/tricks.md @@ -72,12 +72,12 @@ Also, we often need a reference (`&`) because most methods in gtk-rs take refere ```rust,ignore gtk::HeaderBar { - pack_start: >k::Label { + pack_start = >k::Label { // ... } }, gtk::Grid { - attach[0, 0, 1, 1]: >k::Label { + attach[0, 0, 1, 1] = >k::Label { // ... } }