From 97b22055ccc67029d91878b6770e2f49f07031ce Mon Sep 17 00:00:00 2001 From: Fergus Henderson Date: Fri, 29 Jan 2021 07:37:21 -0800 Subject: [PATCH] Fix unmatched parenthesis in comment. PiperOrigin-RevId: 354530329 Change-Id: I1ac1102d80865403d9db23f459f9132fd72bbf46 --- tensorflow/lite/interpreter_builder.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/lite/interpreter_builder.h b/tensorflow/lite/interpreter_builder.h index 7d65dade778..9529b6cf485 100644 --- a/tensorflow/lite/interpreter_builder.h +++ b/tensorflow/lite/interpreter_builder.h @@ -74,9 +74,9 @@ class InterpreterBuilder { int num_threads); /// Any delegates added with AddDelegate will be applied to the Interpreter - /// generated by operator(), in the order that they were added. The delegate + /// generated by operator(), in the order that they were added. (The delegate /// parameter passed to AddDelegate should be non-null, otherwise an error - /// will be reported, and the call to AddDelegate will have no other effect). + /// will be reported, and the call to AddDelegate will have no other effect.) /// The lifetime of the delegate must be at least as long as the lifetime of /// any Interpreter generated by this InterpreterBuilder. /// WARNING: This is an experimental API and subject to change.