From 01ee002d9efcef861ab887eb1b292271868441d8 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Fri, 9 Jun 2023 19:23:22 +0900 Subject: [PATCH] docs: fix typo in distributing-javascript.rst creat -> create --- docs/source/guides/escape-hatches/distributing-javascript.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/guides/escape-hatches/distributing-javascript.rst b/docs/source/guides/escape-hatches/distributing-javascript.rst index da9cc4b86..9eb478965 100644 --- a/docs/source/guides/escape-hatches/distributing-javascript.rst +++ b/docs/source/guides/escape-hatches/distributing-javascript.rst @@ -201,7 +201,7 @@ we need to declare what our build tool is (in this case Setuptools): requires = ["setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" -Then, we can creat the ``setup.py`` file which uses Setuptools. This will differ +Then, we can create the ``setup.py`` file which uses Setuptools. This will differ substantially from a normal ``setup.py`` file since, as part of the build process we'll need to use NPM to bundle our Javascript. This requires customizing some of the build commands in Setuptools like ``build``, ``sdist``, and ``develop``: