From 9192ba1d1f215c1fb8e9102a515e70e60b0dc003 Mon Sep 17 00:00:00 2001 From: Jean Loui Bernard <45553309+JeanExtreme002@users.noreply.github.com> Date: Sat, 18 Nov 2023 22:19:35 -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 2e6a673..7f20c11 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ for address, info process.search_by_value(..., progress_information = True): ``` # Reading multiple addresses efficiently: -If you have a large number of addresses where their values need to be read from memory, using the 'search_by_addresses' method is much more efficient than reading the value of each address one by one. +If you have a large number of addresses where their values need to be read from memory, using the `search_by_addresses` method is much more efficient than reading the value of each address one by one. ```py for address, value process.search_by_addresses(int, 4, addresses_list): print(f"Address", address, "holds the value", value)