From 72adce4e42f9751f8ef231f960903f5bb1ab00be Mon Sep 17 00:00:00 2001 From: Jean Loui Bernard <45553309+JeanExtreme002@users.noreply.github.com> Date: Thu, 16 Nov 2023 02:30:58 -0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1cd56ce..43572af 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ for address process.search_by_value(int, 4, target_value, scan_type = ScanTypesE print("Found address:", address) ``` -**Note:** The scan types `EXACT_VALUE` and `NOT_EXACT_VALUE` uses [KMP (Knuth–Morris–Pratt) Algorithm](https://en.wikipedia.org/wiki/Knuth%E2%80%93Morris%E2%80%93Pratt_algorithm) to speed up the search process. +**Note:** The scan types `EXACT_VALUE` and `NOT_EXACT_VALUE` uses [KMP (Knuth–Morris–Pratt) Algorithm](https://en.wikipedia.org/wiki/Knuth%E2%80%93Morris%E2%80%93Pratt_algorithm) to speed up the search process. The other scan types use the brute force algorithm, so the search may be slower depending on the length of the target value." You can also search for a value within a range: ```py