From 62960a0322bf8391b4d2cc232a2b13d70114dba4 2020-06-10 14:54:48
From: 谭九鼎 <109224573@qq.com>
Date: 2020-06-10 14:54:48
Subject: [PATCH] Update intro.rst
---

diff --git a/docs/source/config/intro.rst b/docs/source/config/intro.rst
index 48578e5..fa46ba0 100644
--- a/docs/source/config/intro.rst
+++ b/docs/source/config/intro.rst
@@ -93,12 +93,14 @@ hierarchy represent the value you would normally set on the ``c`` object of
     {
         "InteractiveShell": {
             "colors": "LightBG",
-            "editor": "nano"
         },
         "InteractiveShellApp": {
             "extensions": [
                 "myextension"
             ]
+        },
+        "TerminalInteractiveShell": {
+            "editor": "nano"
         }
     }
 
@@ -109,7 +111,7 @@ Is equivalent to the following ``ipython_config.py``::
     ]
 
     c.InteractiveShell.colors = 'LightBG'
-    c.InteractiveShell.editor = 'nano'
+    c.TerminalInteractiveShell.editor = 'nano'
 
 
 Command line arguments