ahmedabu98 commented on code in PR #31470:
URL: https://github.com/apache/beam/pull/31470#discussion_r1628219510
##########
sdks/java/managed/src/main/java/org/apache/beam/sdk/managed/Managed.java:
##########
@@ -66,11 +72,9 @@
* <p>The file's path can be passed in to the Managed API like so:
*
* <pre>{@code
- * PCollectionRowTuple input = PCollectionRowTuple.of("input",
pipeline.apply(Create.of(...)))
+ * PCollection<Row> inputRows = pipeline.apply(Create.of(...));
*
- * PCollectionRowTuple output = input.apply(
- * Managed.write(ICEBERG)
- * .withConfigUrl(<config path>));
+ * input.apply(Managed.write(ICEBERG).withConfigUrl(<config path>));
Review Comment:
Thanks for catching this! fixing in #31517, PTAL
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]