Skip to content

Commit

Permalink
Update LinuxOsxProcess.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Oct 6, 2023
1 parent 981bf42 commit ee649b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DiffEngine/Process/LinuxOsxProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static bool TryParse(string line, out ProcessCommand? processCommand)

var timeAndCommandString = trim[(firstSpace + 1)..];
var multiSpaceIndex = 0;
ReadOnlySpan<char> command;
CharSpan command;

var spaces = new CharSpan(new []{' ',' ',' '});
if (timeAndCommandString.IndexOf(spaces, StringComparison.InvariantCulture) > 0)
Expand Down

0 comments on commit ee649b2

Please sign in to comment.