Skip to content

Commit

Permalink
Fix GenerateSequenceSchemaTransformProvider formatting (#29798)
Browse files Browse the repository at this point in the history
  • Loading branch information
damccorm authored Dec 18, 2023
1 parent c3d130c commit add3438
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ public String description() {
return String.format(
"Outputs a PCollection of Beam Rows, each containing a single INT64 "
+ "number called \"value\". The count is produced from the given \"start\""
+ "value and either up to the given \"end\" or until 2^63 - 1.\n"
+ "value and either up to the given \"end\" or until 2^63 - 1.%n"
+ "To produce an unbounded PCollection, simply do not specify an \"end\" value. "
+ "Unbounded sequences can specify a \"rate\" for output elements.\n"
+ "Unbounded sequences can specify a \"rate\" for output elements.%n"
+ "In all cases, the sequence of numbers is generated in parallel, so there is no "
+ "inherent ordering between the generated values");
}
Expand Down

0 comments on commit add3438

Please sign in to comment.