From de2542378fc8e23a0e59ebb1ed820fc511c277d5 Mon Sep 17 00:00:00 2001 From: peachesontour <67612358+peachesontour@users.noreply.github.com> Date: Mon, 29 Jun 2020 21:26:07 -0300 Subject: [PATCH] Typos --- 1-js/99-js-misc/01-proxy/01-error-nonexisting/task.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/1-js/99-js-misc/01-proxy/01-error-nonexisting/task.md b/1-js/99-js-misc/01-proxy/01-error-nonexisting/task.md index 827cf35e..d7093c0c 100644 --- a/1-js/99-js-misc/01-proxy/01-error-nonexisting/task.md +++ b/1-js/99-js-misc/01-proxy/01-error-nonexisting/task.md @@ -1,8 +1,8 @@ -# Error on reading non-existant property +# Error on reading non-existent property -Usually, an attempt to read a non-existant property returns `undefined`. +Usually, an attempt to read a non-existent property returns `undefined`. -Create a proxy that throws an error for an attempt to read of a non-existant property instead. +Create a proxy that throws an error for an attempt to read of a non-existent property instead. That can help to detect programming mistakes early.