Skip to content

Commit da7ee2d

Browse files
authored
Merge pull request #37 from SirRickster/misspelling-corrections
Minor misspelled corrections
2 parents d9731fc + 547606f commit da7ee2d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

ZXBStudio/BuildSystem/ZXProjectBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class ZXProjectBuilder
2525

2626
if (ZXProjectManager.Current == null)
2727
{
28-
OutputLogWritter.WriteLine("No open projcet, aborting...");
28+
OutputLogWritter.WriteLine("No open project, aborting...");
2929
return null;
3030
}
3131

@@ -262,7 +262,7 @@ private static bool BuildNexFile(byte[] binary, ZXBuildSettings settings, ZXProj
262262
{
263263
if (ZXProjectManager.Current == null)
264264
{
265-
OutputLogWritter.WriteLine("No open projcet, aborting...");
265+
OutputLogWritter.WriteLine("No open project, aborting...");
266266
return null;
267267
}
268268

@@ -454,14 +454,14 @@ public static bool Export(ZXExportOptions Export, TextWriter OutputLogWritter)
454454
{
455455
if (ZXProjectManager.Current == null)
456456
{
457-
OutputLogWritter.WriteLine("No open projcet, aborting...");
457+
OutputLogWritter.WriteLine("No open project, aborting...");
458458
return false;
459459
}
460460

461461
var project = ZXProjectManager.Current;
462462

463463
Cleanup(project.ProjectPath);
464-
ZXBuildSettings? settings = null;
464+
ZXBuildSettings? settings;
465465
string? mainFile = null;
466466

467467
if (string.IsNullOrWhiteSpace(ZXOptions.Current.ZxbcPath) || string.IsNullOrWhiteSpace(ZXOptions.Current.ZxbasmPath))

0 commit comments

Comments
 (0)