Skip to content

Commit

Permalink
Fix dependency tokens.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillof committed Jan 5, 2024
1 parent 988c034 commit d5fd8b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tokenizer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ std::string Tokenizer::Token::type_name(TokenType type) {
return "newline";

case TokenType::ORDER_DEPENDENCY:
return "|@";
return "||";

case TokenType::POOL:
return "pool";
Expand All @@ -130,7 +130,7 @@ std::string Tokenizer::Token::type_name(TokenType type) {
return "subninja";

case TokenType::VALIDATION_DEPENDENCY:
return "||";
return "|@";

case TokenType::VARIABLE_REFERENCE:
return "$";
Expand Down

0 comments on commit d5fd8b7

Please sign in to comment.