From 537a654bafab901c447e1accb647eb87fe47db3b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com>
Date: Tue, 19 Mar 2019 00:31:31 +0100
Subject: [PATCH] Introspection

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index ec3b802..3802ffd 100644
--- a/README.md
+++ b/README.md
@@ -1414,7 +1414,7 @@ Introspection
 
 ### Variables
 ```python
-<list> = dir()      # Names of in-scope variables.
+<list> = dir()      # Names of variables in current scope.
 <dict> = locals()   # Dict of local variables. Also vars().
 <dict> = globals()  # Dict of global variables.
 ```