From 233edf91862a6629c191290de0eb4b40384b6f1c Mon Sep 17 00:00:00 2001 From: heck Date: Thu, 1 Jun 2023 14:54:18 +0200 Subject: [PATCH] positron review: typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d7aac10..c5385cb 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ In environments where memory management is explicit, the lifecycle of data in me 2. Memory being shared with producers/consumers (e.g. as a parameter Read/Update/Consume) 3. Read/write operations by multiple parties (needs synchronization if multithreaded environment) 3. Make sure this memory will never be accessed again by nobody -4. Memory has to be freed exactly once and compatible to how it was allocated +4. Memory has to be freed exactly once and compatibly to how it was allocated Every such lifecycle must be completed. All of this must be guaranteed.