Skip to content

Commit

Permalink
Fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
mpkorstanje committed Apr 13, 2024
1 parent 5ec2551 commit 9d13b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/Gherkin/GherkinLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private IEnumerable<Tuple<string, int>> SplitCells(string row)
} else if (c == GherkinLanguageConstants.TABLE_CELL_ESCAPE_CHAR) {
bool hasNext = rowEnum.MoveNext();
pos++;
c = hasNext ? rowEnum.Current : '';
c = hasNext ? rowEnum.Current : "";

Check failure on line 130 in dotnet/Gherkin/GherkinLine.cs

View workflow job for this annotation

GitHub Actions / test-dotnet

Cannot implicitly convert type 'string' to 'char'

Check failure on line 130 in dotnet/Gherkin/GherkinLine.cs

View workflow job for this annotation

GitHub Actions / test-dotnet

Cannot implicitly convert type 'string' to 'char'

Check failure on line 130 in dotnet/Gherkin/GherkinLine.cs

View workflow job for this annotation

GitHub Actions / test-dotnet

Cannot implicitly convert type 'string' to 'char'
if (c == GherkinLanguageConstants.TABLE_CELL_NEWLINE_ESCAPE) {
cell += "\n";
} else {
Expand Down

0 comments on commit 9d13b34

Please sign in to comment.