From 686b9f71343c195bdf4dd467580a164c40c7e8eb Mon Sep 17 00:00:00 2001 From: Miauwkeru Date: Tue, 4 Jun 2024 11:33:06 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: pyrco <105293448+pyrco@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1ae679..218b7ef 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ assert a.dumps() == d ``` ### Enums and Flags -The API to access enum members and their values in the same way as the native Enum types in Python 3. Functionally, it's best comparable to the IntEnum or IntFlag type. +The API to access enum and flag members and their values in the same way as the native Enum types in Python 3. Functionally, it's best comparable to the IntEnum or IntFlag type. ### Custom types You can implement your own types by subclassing `BaseType`, and adding them to your cstruct instance with `add_custom_type(name, type, size, alignment, ...)`