summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorDan Davis <danizen@users.noreply.github.com>2019-02-13 13:59:44 -0500
committerTim Graham <timograham@gmail.com>2019-02-13 13:59:44 -0500
commit2bd8df243ac6fc35e58c9fe90b20c9e42519a5ac (patch)
tree1f7507bfac4533ef651aa55a448e64f6ef94e19a /docs/intro
parentf63811f4813f0e0439e140a97eeba18a5017e858 (diff)
Fixed #30184 -- Removed ellipsis characters from shell output strings.
Partially reverted 50b8493581fea3d7137dd8db33bac7008868d23a (refs #29654) to avoid a crash when the user shell doesn't support non-ASCII characters.
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/tutorial01.txt2
-rw-r--r--docs/intro/tutorial02.txt4
-rw-r--r--docs/intro/tutorial05.txt8
3 files changed, 7 insertions, 7 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index c25e363d65..b3358de26b 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -131,7 +131,7 @@ You'll see the following output on the command line:
.. parsed-literal::
- Performing system checks…
+ Performing system checks...
System check identified no issues (0 silenced).
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index 4d2a62bec2..9046d167b0 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -338,8 +338,8 @@ Now, run :djadmin:`migrate` again to create those model tables in your database:
Operations to perform:
Apply all migrations: admin, auth, contenttypes, polls, sessions
Running migrations:
- Rendering model states… DONE
- Applying polls.0001_initial… OK
+ Rendering model states... DONE
+ Applying polls.0001_initial... OK
The :djadmin:`migrate` command takes all the migrations that haven't been
applied (Django tracks which ones are applied using a special table in your
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt
index 222bbf4972..42891a6ecd 100644
--- a/docs/intro/tutorial05.txt
+++ b/docs/intro/tutorial05.txt
@@ -203,7 +203,7 @@ In the terminal, we can run our test:
and you'll see something like::
- Creating test database for alias 'default'…
+ Creating test database for alias 'default'...
System check identified no issues (0 silenced).
F
======================================================================
@@ -218,7 +218,7 @@ and you'll see something like::
Ran 1 test in 0.001s
FAILED (failures=1)
- Destroying test database for alias 'default'…
+ Destroying test database for alias 'default'...
What happened is this:
@@ -257,14 +257,14 @@ past:
and run the test again::
- Creating test database for alias 'default'…
+ Creating test database for alias 'default'...
System check identified no issues (0 silenced).
.
----------------------------------------------------------------------
Ran 1 test in 0.001s
OK
- Destroying test database for alias 'default'…
+ Destroying test database for alias 'default'...
After identifying a bug, we wrote a test that exposes it and corrected the bug
in the code so our test passes.