mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-08 11:20:46 -05:00
Merge pull request 'Calling split
is deprecated' (#110) from cannero/zig-exercises:change_split into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/110
This commit is contained in:
commit
c0c315b25a
1 changed files with 2 additions and 2 deletions
|
@ -459,7 +459,7 @@ fn resetLine() void {
|
|||
pub fn trimLines(allocator: std.mem.Allocator, buf: []const u8) ![]const u8 {
|
||||
var list = try std.ArrayList(u8).initCapacity(allocator, buf.len);
|
||||
|
||||
var iter = std.mem.split(u8, buf, " \n");
|
||||
var iter = std.mem.splitSequence(u8, buf, " \n");
|
||||
while (iter.next()) |line| {
|
||||
// TODO: trimming CR characters is probably not necessary.
|
||||
const data = std.mem.trimRight(u8, line, " \r");
|
||||
|
@ -521,7 +521,7 @@ fn validate_exercises() bool {
|
|||
return false;
|
||||
}
|
||||
|
||||
var iter = std.mem.split(u8, ex.output, "\n");
|
||||
var iter = std.mem.splitScalar(u8, ex.output, '\n');
|
||||
while (iter.next()) |line| {
|
||||
const output = std.mem.trimRight(u8, line, " \r");
|
||||
if (output.len != line.len) {
|
||||
|
|
Loading…
Reference in a new issue