aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/cc/framework
diff options
context:
space:
mode:
authorGravatar Max Galkin <maxgalkin@google.com>2017-09-22 11:55:51 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-09-22 12:13:32 -0700
commitd9bd87b17c87959938273ef5167e161882be2be4 (patch)
tree9a377b829d307fe59d39e914f2e9b0ed05c46100 /tensorflow/cc/framework
parent90d284fbf7ffb0a329744006d244fcd964092a57 (diff)
Fix tensorflow::Scope documentation: angle brackets in comments don't play well with HTML docs.
Diffstat (limited to 'tensorflow/cc/framework')
-rw-r--r--tensorflow/cc/framework/scope.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/cc/framework/scope.h b/tensorflow/cc/framework/scope.h
index 0335f6357d..0225ac0472 100644
--- a/tensorflow/cc/framework/scope.h
+++ b/tensorflow/cc/framework/scope.h
@@ -107,13 +107,13 @@ class Scope {
static Scope NewRootScope();
/// Return a new scope. Ops created with this scope will have
- /// <name>/<child_scope_name> as the prefix. The actual name will be unique
+ /// `name/child_scope_name` as the prefix. The actual name will be unique
/// in the current scope. All other properties are inherited from the current
- /// scope. If child_scope_name is empty, the '/' is elided.
+ /// scope. If `child_scope_name` is empty, the `/` is elided.
Scope NewSubScope(const string& child_scope_name) const;
/// Return a new scope. All ops created within the returned scope will have
- /// names of the form <name>/<op_name>[_<suffix].
+ /// names of the form `name/op_name[_suffix]`.
Scope WithOpName(const string& op_name) const;
/// Return a new scope. All ops created within the returned scope will have as