8000 Add newline to fix tuple output description formatting. · staticfloat/tensorflow@53dc8ab · GitHub
[go: up one dir, main page]

Skip to content

Commit 53dc8ab

Browse files
MarkDaousttensorflower-gardener
authored andcommitted
Add newline to fix tuple output description formatting.
PiperOrigin-RevId: 155863837
1 parent ebb2785 commit 53dc8ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow/python/framework/python_op_gen.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ static string GetReturns(const OpDef& op_def,
283283
out_names[i] = strings::StrCat("output", i);
284284
}
285285
}
286-
strings::Appendf(&result, " A tuple of `Tensor` objects (%s).\n",
286+
strings::Appendf(&result, " A tuple of `Tensor` objects (%s).\n\n",
287287
str_util::Join(out_names, ", ").c_str());
288288
for (int i = 0; i < num_outs; ++i) {
289289
string desc = strings::StrCat(out_names[i], ": ");

0 commit comments

Comments
 (0)
0