From 729ad2296c65b7ca92422e2d1add93bf5cddde54 Mon Sep 17 00:00:00 2001 From: Salvatore Date: Tue, 27 Aug 2024 02:44:52 +0200 Subject: [PATCH] Improved docs readability in the performance section --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a44ce17..bdf6e78 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,8 @@ composer require blancks/fast-jsonpatch-php 5. **Performance:** - - The class is optimized for performance, time complexity is O(N*P) where N is the number of operations of the patch and where P is the nesting level that a single operation targets. - - Best use case is for scenarios where JSON document can be fully loaded into memory and you need fast patch processing, like websockets server/client. + - The class is optimized for performance, time complexity is O(N*P) where N is the number of operations of the patch and where P is the nesting level of patch operations. + - Best use case is for scenarios where JSON document can be fully loaded into memory, and you need fast patch processing like websockets server/client. 6. **Tests:**