From e2cb327060ad370638b7e0f51221eee045d490ce Mon Sep 17 00:00:00 2001 From: MediaPipe Team Date: Thu, 25 May 2023 15:45:13 -0700 Subject: [PATCH] Give an example of the expected protoType syntax PiperOrigin-RevId: 535413303 --- mediapipe/web/graph_runner/graph_runner.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mediapipe/web/graph_runner/graph_runner.ts b/mediapipe/web/graph_runner/graph_runner.ts index 3444653f..5d0c87b1 100644 --- a/mediapipe/web/graph_runner/graph_runner.ts +++ b/mediapipe/web/graph_runner/graph_runner.ts @@ -717,8 +717,8 @@ export class GraphRunner { * given timestamp, to be parsed into the specified protobuffer type. * @param data The binary (serialized) raw protobuffer data. * @param protoType The C++ namespaced type this protobuffer data corresponds - * to. It will be converted to this type when output as a packet into the - * graph. + * to (e.g. "foo.Bar"). It will be converted to this type when output as a + * packet into the graph. * @param streamName The name of the graph input stream to send data into. * @param timestamp The timestamp of the input data, in ms. */