From bbd9e21afe7fd96d2d70cc76e5b14efcefba61b2 Mon Sep 17 00:00:00 2001 From: Edward H <BDHU@users.noreply.github.com> Date: Sat, 30 Dec 2017 03:44:12 +0800 Subject: [PATCH] Fixed a typo for CreateBody() --- tensorflow/cc/ops/while_loop.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/cc/ops/while_loop.cc b/tensorflow/cc/ops/while_loop.cc index e0251efb2a4..d1c918d464b 100644 --- a/tensorflow/cc/ops/while_loop.cc +++ b/tensorflow/cc/ops/while_loop.cc @@ -116,7 +116,7 @@ Status CreateCond(const Scope& scope, const CondGraphBuilderFn& cond, return Status::OK(); } -// Create the bdoy subgraph defined by `body`. `outputs` must be non-null and +// Create the body subgraph defined by `body`. `outputs` must be non-null and // empty. Status CreateBody(const Scope& scope, const BodyGraphBuilderFn& body, const std::vector<Output>& inputs,