@@ -790,7 +790,7 @@ object Build {
790
790
" -classpath" :: classpath :: beforeCp ::: fromCp.drop(2 )
791
791
}
792
792
793
- lazy val nonBootstrapedDottyCompilerSettings = commonDottyCompilerSettings ++ Seq (
793
+ lazy val nonBootstrappedDottyCompilerSettings = commonDottyCompilerSettings ++ Seq (
794
794
// packageAll packages all and then returns a map with the abs location
795
795
packageAll := Def .taskDyn { // Use a dynamic task to avoid loops when loading the settings
796
796
Def .task {
@@ -817,7 +817,7 @@ object Build {
817
817
(Test / javaOptions) += " -Xss2m"
818
818
)
819
819
820
- lazy val bootstrapedDottyCompilerSettings = commonDottyCompilerSettings ++ Seq (
820
+ lazy val bootstrappedDottyCompilerSettings = commonDottyCompilerSettings ++ Seq (
821
821
javaOptions ++= {
822
822
val jars = packageAll.value
823
823
Seq (
@@ -842,7 +842,7 @@ object Build {
842
842
)
843
843
844
844
def dottyCompilerSettings (implicit mode : Mode ): sbt.Def .SettingsDefinition =
845
- if (mode == NonBootstrapped ) nonBootstrapedDottyCompilerSettings else bootstrapedDottyCompilerSettings
845
+ if (mode == NonBootstrapped ) nonBootstrappedDottyCompilerSettings else bootstrappedDottyCompilerSettings
846
846
847
847
lazy val `scala3-compiler` = project.in(file(" compiler" )).asDottyCompiler(NonBootstrapped )
848
848
@@ -1047,7 +1047,7 @@ object Build {
1047
1047
1048
1048
/** Test the tasty generated by `stdlib-bootstrapped`
1049
1049
*
1050
- * The tests are run with the bootstrapped compiler and the tasty inpector on the classpath.
1050
+ * The tests are run with the bootstrapped compiler and the tasty inspector on the classpath.
1051
1051
* The classpath has the default `scala-library` and not `stdlib-bootstrapped`.
1052
1052
*
1053
1053
* The jar of `stdlib-bootstrapped` is provided for to the tests.
@@ -1448,14 +1448,14 @@ object Build {
1448
1448
.asDottyBench(Bootstrapped )
1449
1449
.settings(Jmh / run / mainClass := Some (" org.openjdk.jmh.Main" ))
1450
1450
1451
- val testcasesOutputDir = taskKey[Seq [String ]](" Root directory where tests classses are generated" )
1451
+ val testcasesOutputDir = taskKey[Seq [String ]](" Root directory where tests classes are generated" )
1452
1452
val testcasesSourceRoot = taskKey[String ](" Root directory where tests sources are generated" )
1453
1453
val testDocumentationRoot = taskKey[String ](" Root directory where tests documentation are stored" )
1454
1454
val generateSelfDocumentation = taskKey[Unit ](" Generate example documentation" )
1455
1455
// Note: the two tasks below should be one, but a bug in Tasty prevents that
1456
1456
val generateScalaDocumentation = inputKey[Unit ](" Generate documentation for dotty lib" )
1457
1457
val generateStableScala3Documentation = inputKey[Unit ](" Generate documentation for stable dotty lib" )
1458
- val generateTestcasesDocumentation = taskKey[Unit ](" Generate documentation for testcases, usefull for debugging tests" )
1458
+ val generateTestcasesDocumentation = taskKey[Unit ](" Generate documentation for testcases, useful for debugging tests" )
1459
1459
1460
1460
val generateReferenceDocumentation = inputKey[Unit ](" Generate language reference documentation for Scala 3" )
1461
1461
0 commit comments