summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sam Atman2025-05-01 10:32:23 -0400
committerGravatar Sam Atman2025-05-01 10:32:23 -0400
commit701f6430d2bed4ddc08ae33f4764b2db32af6c50 (patch)
treeb6a2da056a503c69317a996e881e9c9fa9648f88
parentProofreads (diff)
downloadzg-701f6430d2bed4ddc08ae33f4764b2db32af6c50.tar.gz
zg-701f6430d2bed4ddc08ae33f4764b2db32af6c50.tar.xz
zg-701f6430d2bed4ddc08ae33f4764b2db32af6c50.zip
Proofreads
-rw-r--r--NEWS.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/NEWS.md b/NEWS.md
index 770590d..4a8d651 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -25,7 +25,7 @@ module.
25 25
26Instead there's just `Graphemes`, and the same for a couple of other modules 26Instead there's just `Graphemes`, and the same for a couple of other modules
27which worked the same way. This means that the cases where functionality 27which worked the same way. This means that the cases where functionality
28was provided by a wrapped pointer is now provided directly from the struct 28was provided by a wrapped pointer are now provided directly from the struct
29with the necessary data. 29with the necessary data.
30 30
31This would make user structs larger in some cases, while eliminating a 31This would make user structs larger in some cases, while eliminating a
@@ -115,13 +115,13 @@ the use of the new `DisplayWidth` options.
115 115
116### Tests 116### Tests
117 117
118Is is now possible to run all the tests, not just the `unicode-test` subset. 118It is now possible to run all the tests, not just the `unicode-test` subset.
119Accordingly, that step is removed, and `zig build test` runs everything. 119Accordingly, that step is removed, and `zig build test` runs everything.
120 120
121#### Allocations Tested 121#### Allocations Tested
122 122
123Every allocate-able now has a `checkAllAllocationFailures` test. This 123Every allocate-able now has a `checkAllAllocationFailures` test. This
124process turned up two bugs. Also discovered were 8,663 allocations which 124process turned up two bugs. Also discovered were 8,663 allocations, which
125were reduced to two, these were also being individually freed on deinit. 125were reduced to two, these were also being individually freed on deinit.
126So that's nice. 126So that's nice.
127 127