Skip to content

Commit ad8aa9c

Browse files
committed
Fix lists/indentation
1 parent 6694e45 commit ad8aa9c

5 files changed

Lines changed: 13 additions & 9 deletions

File tree

sdks/go/pkg/beam/io/xlang/bigqueryio/bigquery.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
//
3838
// Current supported SDKs, including expansion service modules and reference
3939
// documentation:
40-
// - Java
40+
//
41+
// Java:
4142
// - Vendored Module: beam-sdks-java-extensions-schemaio-expansion-service
4243
// - Run via Gradle: ./gradlew :sdks:java:extensions:schemaio-expansion-service:runExpansionService
4344
// - Reference Class: org.apache.beam.sdk.io.gcp.bigquery.BigQuerySchemaIOProvider and

sdks/go/pkg/beam/io/xlang/debeziumio/debezium.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@
3333
// released to the Maven repository as modules. For development versions of
3434
// Beam, it is recommended to build and run it from source using Gradle.
3535
//
36-
// Current supported SDKs including expansion service modules
37-
// * Java
36+
// # Current supported SDKs including expansion service modules
37+
//
38+
// Java:
3839
// - Vendored Module: beam-sdks-java-io-debezium-expansion-service
3940
// - Run via Gradle: ./gradlew :sdks:java:io:debezium:expansion-service:shadowJar
4041
// java -jar <path-to-debezium-jar> <port>

sdks/go/pkg/beam/io/xlang/jdbcio/jdbc.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
//
3535
// Current supported SDKs, including expansion service modules and reference
3636
// documentation:
37-
// * Java
37+
//
38+
// Java:
3839
// - Vendored Module: beam-sdks-java-extensions-schemaio-expansion-service
3940
// - Run via Gradle: ./gradlew :sdks:java:extensions:schemaio-expansion-service:build
4041
// java -jar <location_of_jar_file_generated_from_above> <port>

sdks/go/pkg/beam/io/xlang/kafkaio/kafka.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
//
3636
// Current supported SDKs, including expansion service modules and reference
3737
// documentation:
38-
// * Java
38+
//
39+
// Java:
3940
// - Vendored Module: beam-sdks-java-io-expansion-service
4041
// - Run via Gradle: ./gradlew :sdks:java:io:expansion-service:runExpansionService
4142
// - Reference Class: org.apache.beam.sdk.io.kafka.KafkaIO

sdks/go/pkg/beam/runners/universal/runnerlib/compile.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ func BuildTempWorkerBinary(ctx context.Context) (string, error) {
5555
// BuildWorkerBinary creates a local worker binary for linux/amd64. It finds the filename
5656
// by examining the call stack. We want the user entry (*), for example:
5757
//
58-
// /Users/herohde/go/src/github.com/apache/beam/sdks/go/pkg/beam/runners/beamexec/main.go (skip: 2)
59-
// - /Users/herohde/go/src/github.com/apache/beam/sdks/go/examples/wordcount/wordcount.go (skip: 3)
60-
// /usr/local/go/src/runtime/proc.go (skip: 4) // not always present
61-
// /usr/local/go/src/runtime/asm_amd64.s (skip: 4 or 5)
58+
// /Users/herohde/go/src/github.com/apache/beam/sdks/go/pkg/beam/runners/beamexec/main.go (skip: 2)
59+
// * /Users/herohde/go/src/github.com/apache/beam/sdks/go/examples/wordcount/wordcount.go (skip: 3)
60+
// /usr/local/go/src/runtime/proc.go (skip: 4) // not always present
61+
// /usr/local/go/src/runtime/asm_amd64.s (skip: 4 or 5)
6262
func BuildWorkerBinary(ctx context.Context, filename string) error {
6363
program := ""
6464
var isTest bool

0 commit comments

Comments
 (0)