aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/get_started/mnist/pros.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/get_started/mnist/pros.md')
-rw-r--r--tensorflow/docs_src/get_started/mnist/pros.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/docs_src/get_started/mnist/pros.md b/tensorflow/docs_src/get_started/mnist/pros.md
index 5dbb00c0b5..d50e874d52 100644
--- a/tensorflow/docs_src/get_started/mnist/pros.md
+++ b/tensorflow/docs_src/get_started/mnist/pros.md
@@ -392,7 +392,7 @@ The differences are that:
- We will add logging to every 100th iteration in the training process.
We will also use tf.Session rather than tf.InteractiveSession. This better
-separates the process of creating the graph (model sepecification) and the
+separates the process of creating the graph (model specification) and the
process of evaluating the graph (model fitting). It generally makes for cleaner
code. The tf.Session is created within a [`with` block](https://docs.python.org/3/whatsnew/2.6.html#pep-343-the-with-statement)
so that it is automatically destroyed once the block is exited.