From 536f359fb9e829c0966f3dc56910cfd297cc798f Mon Sep 17 00:00:00 2001 From: woxtu Date: Sun, 20 Nov 2022 22:51:09 +0900 Subject: [PATCH] Fix a typo (#964) --- docs/reference/modules/pyscript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/modules/pyscript.md b/docs/reference/modules/pyscript.md index dee69986..f0e9749b 100644 --- a/docs/reference/modules/pyscript.md +++ b/docs/reference/modules/pyscript.md @@ -13,7 +13,7 @@ The RunTime object has the following attributes | attribute | type | description | |---------------------|---------------------|-----------------------------------------------------------------------------| | **src** | string | The URL from which the current runtime was fetched | -| **interpreter** | RuntimeInterpretter | A reference to the runtime object itself | +| **interpreter** | RuntimeInterpreter | A reference to the runtime object itself | | **globals** | any | The globals dictionary of the runtime, if applicable/accessible | | **name (optional)** | string | A user-designated name for the runtime | | **lang (optional)** | string | A user-designation for the language the runtime runs ('Python', 'C++', etc) |