Skip to content

Commit

Permalink
Use Long.toString in transform construction example
Browse files Browse the repository at this point in the history
  • Loading branch information
sjvanrossum committed Aug 7, 2023
1 parent 59b15ff commit 4324b22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
* <pre>{@code
* Pipeline p = Pipeline.create();
* PCollection<String> customerIds =
* p.apply(Create.of("1234567890"));
* p.apply(Create.of(Long.toString(1234567890L)));
* PCollection<GoogleAdsRow> rows =
* customerIds.apply(
* GoogleAdsIO.v14()
Expand Down

0 comments on commit 4324b22

Please sign in to comment.