From fe056f0b5e52db86766761f5e6446a89c1aa3938 Mon Sep 17 00:00:00 2001 From: Vijay Vasudevan Date: Wed, 17 Feb 2016 11:42:30 -0800 Subject: Merge changes from github. Change: 114882676 --- tensorflow/core/lib/strings/numbers.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tensorflow/core/lib/strings/numbers.cc') diff --git a/tensorflow/core/lib/strings/numbers.cc b/tensorflow/core/lib/strings/numbers.cc index 859a654e36..778545b44b 100644 --- a/tensorflow/core/lib/strings/numbers.cc +++ b/tensorflow/core/lib/strings/numbers.cc @@ -33,7 +33,7 @@ char* FastInt32ToBufferLeft(int32 i, char* buffer) { if (i < 0) { *buffer++ = '-'; // We need to do the negation in modular (i.e., "unsigned") - // arithmetic; MSVC++ apprently warns for plain "-u", so + // arithmetic; MSVC++ apparently warns for plain "-u", so // we write the equivalent expression "0 - u" instead. u = 0 - u; } -- cgit v1.2.3