aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/community/style_guide.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/community/style_guide.md')
-rw-r--r--tensorflow/docs_src/community/style_guide.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/docs_src/community/style_guide.md b/tensorflow/docs_src/community/style_guide.md
index 767e33c3d0..f90a6cf938 100644
--- a/tensorflow/docs_src/community/style_guide.md
+++ b/tensorflow/docs_src/community/style_guide.md
@@ -162,9 +162,9 @@ operation.
- `reuse`: `bool` indicator if the variable should be reused if
it's present in the scope.
-* Layers that behave differently during training should have:
- - `is_training`: `bool` to indicate if a training graph is been built.
-
+* Layers that behave differently during training should take:
+ - `is_training`: `bool` indicator to conditionally choose different
+ computation paths (e.g. using `tf.cond`) during execution.
Example: