Fix unmatched parenthesis in comment.

PiperOrigin-RevId: 354530329
Change-Id: I1ac1102d80865403d9db23f459f9132fd72bbf46
This commit is contained in:
Fergus Henderson 2021-01-29 07:37:21 -08:00 committed by TensorFlower Gardener
parent 62b01e4162
commit 97b22055cc

View File

@ -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.