Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit f7b02f2

Browse files
committed
Fixed typo.
1 parent 6935cec commit f7b02f2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/org/rascalmpl/core/library/lang/rascalcore/check/TestConfigs.rsc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public PathConfig getRascalProjectTestingPathConfig() {
9191
// The keep parameter determines whether the generated sources and binaries are kept in a temporary directory or not.
9292
// If keep is true, the generated sources and binaries are stored in a temporary directory, otherwise they are stored in the source directory.
9393

94-
ublic PathConfig makePathConfig(list[loc] sources, list[loc] libraries, bool keep = false) {
94+
public PathConfig makePathConfig(list[loc] sources, list[loc] libraries, bool keep = false) {
9595
COMPILED = keep ? COMPILED_RASCAL : TMP_COMPILED_RASCAL;
9696
return pathConfig(
9797
srcs = sources,
@@ -327,7 +327,8 @@ public RascalCompilerConfig getVSCodeCompilerConfig(){
327327
// ---- Outdated TypePal Usage -----------------------------------------------------------------
328328

329329
public PathConfig getOutdatedTPLPathConfig(bool keep = false) {
330-
return makePathConfig([RASCAL_CORE + "src/org/rascalmpl/core/library"],
330+
return makePathConfig(RASCAL_CORE,
331+
[RASCAL_CORE + "src/org/rascalmpl/core/library"],
331332
[ RASCAL, OUTDATED_TYPEPAL ],
332333
keep=keep);
333334
}

0 commit comments

Comments
 (0)