summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstijn <stijn@ignitron.net>2020-10-08 16:39:33 +0200
committerDamien George <damien@micropython.org>2020-10-29 15:28:18 +1100
commit78c8b55067b2a3da8a2237fe8acd351d188902cb (patch)
tree062f253b5382384ee283cdba00a39bea63432022
parente498a8bd13a0ecdf1cc50f57eb6d3630e8c0c078 (diff)
docs: Fix reference to QSTR_GEN_CFLAGS Makefile flag.
-rw-r--r--docs/develop/qstr.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/develop/qstr.rst b/docs/develop/qstr.rst
index 1b3b9f903..3550a8bd4 100644
--- a/docs/develop/qstr.rst
+++ b/docs/develop/qstr.rst
@@ -51,7 +51,7 @@ Processing happens in the following stages:
through the C pre-processor. This means that any conditionally disabled code
will be removed, and macros expanded. This means we don't add strings to the
pool that won't be used in the final firmware. Because at this stage (thanks
- to the ``NO_QSTR`` macro added by ``QSTR_GEN_EXTRA_CFLAGS``) there is no
+ to the ``NO_QSTR`` macro added by ``QSTR_GEN_CFLAGS``) there is no
definition for ``MP_QSTR_Foo`` it passes through this stage unaffected. This
file also includes comments from the preprocessor that include line number
information. Note that this step only uses files that have changed, which