Skip to content

Commit 2bc40c3

Browse files
committed
style: Typo
1 parent ad863dc commit 2bc40c3

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

dd-java-agent/agent-debugger/debugger-test-scala/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010

1111
tasks.withType(ScalaCompile).configureEach {
1212
// Despite the compatibility matrix, scala compiler doesn't properly
13-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
13+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
1414
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
1515
// * https://github.com/gradle/gradle/issues/19456
1616
configureCompiler(it, 8)

dd-java-agent/benchmark-integration/play-perftest/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ play {
1818

1919
tasks.withType(ScalaCompile).configureEach {
2020
// Despite the compatibility matrix, scala compiler doesn't properly
21-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
21+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
2222
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
2323
// * https://github.com/gradle/gradle/issues/19456
2424
configureCompiler(it, 8)

dd-java-agent/instrumentation/jdbc/scalikejdbc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tasks.named("compileLatestDepTestGroovy", GroovyCompile) {
2222

2323
tasks.withType(ScalaCompile).configureEach {
2424
// Despite the compatibility matrix, scala compiler doesn't properly
25-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
25+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
2626
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
2727
// * https://github.com/gradle/gradle/issues/19456
2828
configureCompiler(it, 8)

dd-java-agent/instrumentation/junit/junit-4.10/munit-junit-4/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ tasks.named("compileLatestDepTestGroovy") {
4343

4444
tasks.withType(ScalaCompile).configureEach {
4545
// Despite the compatibility matrix, scala compiler doesn't properly
46-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
46+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
4747
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
4848
// * https://github.com/gradle/gradle/issues/19456
4949
configureCompiler(it, 8)

dd-java-agent/instrumentation/scala-promise/scala-promise-2.10/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ tasks.named("compileLatestDepForkedTestGroovy", GroovyCompile) {
6262

6363
tasks.withType(ScalaCompile).configureEach {
6464
// Despite the compatibility matrix, scala compiler doesn't properly
65-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
65+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
6666
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
6767
// * https://github.com/gradle/gradle/issues/19456
6868
configureCompiler(it, 8)

dd-java-agent/instrumentation/scala-promise/scala-promise-2.13/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ tasks.named("compileLatestDepForkedTestGroovy", GroovyCompile) {
5959

6060
tasks.withType(ScalaCompile).configureEach {
6161
// Despite the compatibility matrix, scala compiler doesn't properly
62-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
62+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
6363
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
6464
// * https://github.com/gradle/gradle/issues/19456
6565
configureCompiler(it, 8)

dd-java-agent/instrumentation/scala/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ final testTasks = scalaVersions.collect { scalaLibrary ->
4949

5050
tasks.named(customSourceSet.getCompileTaskName("scala"), ScalaCompile) {
5151
// Despite the compatibility matrix, scala compiler doesn't properly
52-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
52+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
5353
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
5454
// * https://github.com/gradle/gradle/issues/19456
5555
configureCompiler(it, 8)

dd-java-agent/instrumentation/scalatest/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ tasks.named("compileLatestDepTestGroovy") {
3535

3636
tasks.withType(ScalaCompile).configureEach {
3737
// Despite the compatibility matrix, scala compiler doesn't properly
38-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
38+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
3939
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
4040
// * https://github.com/gradle/gradle/issues/19456
4141
configureCompiler(it, 8)

dd-java-agent/instrumentation/zio/zio-2.0/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ tasks.named("compileLatestDepTestGroovy", GroovyCompile) {
3737

3838
tasks.withType(ScalaCompile).configureEach {
3939
// Despite the compatibility matrix, scala compiler doesn't properly
40-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
40+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
4141
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
4242
// * https://github.com/gradle/gradle/issues/19456
4343
configureCompiler(it, 8)

dd-smoke-tests/iast-propagation/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ tasks.withType(Test).configureEach {
4343

4444
tasks.withType(ScalaCompile).configureEach {
4545
// Despite the compatibility matrix, scala compiler doesn't properly
46-
// ger the right compiler flags with JDK11 toolchain. Using 8 works.
46+
// get the right compiler flags with JDK11 toolchain. Using 8 works.
4747
// * https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html
4848
// * https://github.com/gradle/gradle/issues/19456
4949
configureCompiler(it, 8)

0 commit comments

Comments
 (0)