From b3db915a8983755870dcb9ed43b27671b188e005 Mon Sep 17 00:00:00 2001 From: Peter Thaleikis Date: Fri, 16 Oct 2020 14:58:03 +0400 Subject: [PATCH] exeuction -> execution --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 635b3ad..83781b6 100644 --- a/README.markdown +++ b/README.markdown @@ -97,7 +97,7 @@ javac -g binary_search/BinarySearchRecursive.java # Make sure you include this `-g` switch! ``` -Once compiled with debugging information included, you can use the Java debugger to inspect the values of all variables during program exeuction, run the code one line at a time, step by step, and more: +Once compiled with debugging information included, you can use the Java debugger to inspect the values of all variables during program execution, run the code one line at a time, step by step, and more: ```sh jdb -classpath binary_search BinarySearchRecursive.java