From 542a2a339ea89b5f5198cb9a3a23107b3366f535 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 17 Dec 2019 20:05:21 +1100 Subject: [PATCH] Fix simple typo: wheter -> whether (#1460) Closes #1459 --- AUTHORS.txt | 1 + jedi/inference/value/dynamic_arrays.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index 5de84e5e..f30d0c01 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -54,5 +54,6 @@ Dima Gerasimov (@karlicoss) Max Woerner Chase (@mwchase) Johannes Maria Frank (@jmfrank63) Shane Steinert-Threlkeld (@shanest) +Tim Gates (@timgates42) Note: (@user) means a github user name. diff --git a/jedi/inference/value/dynamic_arrays.py b/jedi/inference/value/dynamic_arrays.py index f888cd36..d1159db2 100644 --- a/jedi/inference/value/dynamic_arrays.py +++ b/jedi/inference/value/dynamic_arrays.py @@ -10,7 +10,7 @@ current module will be checked for appearances of ``arr.append``, content will be added This can be really cpu intensive, as you can imagine. Because |jedi| has to -follow **every** ``append`` and check wheter it's the right array. However this +follow **every** ``append`` and check whether it's the right array. However this works pretty good, because in *slow* cases, the recursion detector and other settings will stop this process.