docs: doc that precompiling is disabled by default (#1908)
The original PR accidentally said precompiling was enabledy by default.
diff --git a/docs/sphinx/precompiling.md b/docs/sphinx/precompiling.md
index 791fc41..05a6c4d 100644
--- a/docs/sphinx/precompiling.md
+++ b/docs/sphinx/precompiling.md
@@ -1,13 +1,11 @@
# Precompiling
-Precompiling is compiling Python source files (`.py` files) into byte code (`.pyc`
-files) at build
-time instead of runtime. Doing it at build time can improve performance by
-skipping that work at runtime.
+Precompiling is compiling Python source files (`.py` files) into byte code
+(`.pyc` files) at build time instead of runtime. Doing it at build time can
+improve performance by skipping that work at runtime.
-Precompiling is enabled by default, so there typically isn't anything special
-you must do to use it.
-
+Precompiling is disabled by default, so you must enable it using flags or
+attributes to use it.
## Overhead of precompiling