From 8b521e459a3951e30227af60a12de5a4f940ade2 Mon Sep 17 00:00:00 2001 From: yggverse Date: Fri, 27 Sep 2024 20:49:44 +0300 Subject: [PATCH] update readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c1e3c90c..ced9b54d 100644 --- a/README.md +++ b/README.md @@ -38,11 +38,11 @@ This guide in process * access 1 level of child API, never parents (e.g.`super`) * implement only one `struct` (same as one file for one class) * `struct` is public, where members - private - * contain `struct` implementation: + * contain main `struct` implementation: * at least one constructor that must return: - * raw `struct` (`new() -> Self`) without cover to any kind of smart `std` or `glib` pointers - * ownership to new object created - * one public link getter for privately constructed widget (`widget -> &Gtk`) + * unwrapped main `Self` structure + * granted ownership for new object created + * public link getter for privately constructed widget ### Contribution