From dac25f50f38041c6e3ff5ec18adce274a7eb1658 Mon Sep 17 00:00:00 2001 From: ferdymercury Date: Wed, 24 Jul 2024 11:24:02 +0200 Subject: [PATCH] fix typo in cling docu --- docs/chapters/implementation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/chapters/implementation.rst b/docs/chapters/implementation.rst index 2fdd365d9c..667ee5b68f 100644 --- a/docs/chapters/implementation.rst +++ b/docs/chapters/implementation.rst @@ -23,8 +23,8 @@ the fact that translating code at run time adds to the overhead and therefore causes the execution speed to be slower. This issue is overcome by exploiting the *Just-In-Time* (`JIT `_) compilation method, -which allows an efficient meory management (for example, by evaluating whether a -certain part of the source code is executed often, and then compile this part, +which allows an efficient memory management (for example, by evaluating whether +a certain part of the source code is executed often, and then compile this part, therefore reducing the overall execution time). With the JIT approach, the developer types the code in Cling's command