diff --git a/README.md b/README.md index 405c51f..4458c6c 100644 --- a/README.md +++ b/README.md @@ -1053,7 +1053,7 @@ Introspection and Metaprograming ### Variables ```python = dir() # Names of in-scope variables. - = locals() # Dict of local variables, same as vars(). + = locals() # Dict of local variables. Also vars(). = globals() # Dict of global variables. ```