aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/error_reporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/error_reporter.h')
-rw-r--r--tensorflow/contrib/lite/error_reporter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/contrib/lite/error_reporter.h b/tensorflow/contrib/lite/error_reporter.h
index 637d456ce7..d5715e4f90 100644
--- a/tensorflow/contrib/lite/error_reporter.h
+++ b/tensorflow/contrib/lite/error_reporter.h
@@ -25,10 +25,10 @@ namespace tflite {
//
// Usage:
// ErrorReporter foo;
-// foo.Report("test %d\n", 5);
+// foo.Report("test %d", 5);
// or
// va_list args;
-// foo.Report("test %d\n", args); // where args is va_list
+// foo.Report("test %d", args); // where args is va_list
//
// Sublclass ErrorReporter to provide another reporting destination.
// For example, if you have a GUI program, you might redirect to a buffer