Skip to content

Commit 62ffc0c

Browse files
committed
x/os: {read, write}Vectorized() -> {read, write}Message()
1 parent f3a8e7f commit 62ffc0c

File tree

5 files changed

+67
-125
lines changed

5 files changed

+67
-125
lines changed

lib/std/json.zig

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2014,12 +2014,9 @@ test "parse into struct with duplicate field" {
20142014
const ballast = try testing.allocator.alloc(u64, 1);
20152015
defer testing.allocator.free(ballast);
20162016

2017-
const options_first = ParseOptions{
2018-
.allocator = testing.allocator,
2019-
.duplicate_field_behavior = .UseFirst
2020-
};
2017+
const options_first = ParseOptions{ .allocator = testing.allocator, .duplicate_field_behavior = .UseFirst };
20212018

2022-
const options_last = ParseOptions{
2019+
const options_last = ParseOptions{
20232020
.allocator = testing.allocator,
20242021
.duplicate_field_behavior = .UseLast,
20252022
};

0 commit comments

Comments
 (0)