From 087e57442edf060bc8fdcf9d9aef4a14e31ee8fe Mon Sep 17 00:00:00 2001 From: itdominator Date: Mon, 11 Oct 2021 04:36:39 +0000 Subject: [PATCH] Update 'src/__builtins__.py' --- src/__builtins__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__builtins__.py b/src/__builtins__.py index cf4b385..261d55d 100644 --- a/src/__builtins__.py +++ b/src/__builtins__.py @@ -8,6 +8,6 @@ class Builtins: print("Hello, user!") - # NOTE: There areto ways to add global items. like so. + # NOTE: There are two ways to add global items. builtins.hello_user = hello_user __builtins__.update({"hello_world": hello_world})