Skip to content

Commit

Permalink
Fixed some typos leftover from experimentation
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjbreisch committed May 12, 2022
1 parent 527b47e commit 3f6bc0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Trs80.Level1Basic.VirtualMachine.Interpreter;

public interface IInterpreter : IExpressionVisitor<object>, IStatementVisitor<object>
public interface IInterpreter : IExpressionVisitor, IStatementVisitor
{
Statement CurrentStatement { get; }
void Interpret(ParsedLine line);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ private void WriteFloatValue(dynamic value)
_sb.Append(value.ToString("######"));
}

public sd VisitNextStatement(Next statement)
public void VisitNextStatement(Next statement)
{
ForCheckCondition checkCondition = GetCheckCondition(statement);
dynamic nextIndexerValue = IncrementIndexer(checkCondition);
Expand Down

0 comments on commit 3f6bc0f

Please sign in to comment.