Skip to content

Commit 5f77327

Browse files
[autofix.ci] apply automated fixes
1 parent 47c3c89 commit 5f77327

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/io/source.zig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ pub const Source = union(enum) {
4444

4545
/// Current state of the fs_t request.
4646
state: enum(u8) {
47-
deinitialized, // fs.deinit() called, ready for next operation
48-
operating, // read or write operation in progress
49-
canceling, // cancel requested, waiting for callback
50-
closing, // close operation in progress
47+
deinitialized, // fs.deinit() called, ready for next operation
48+
operating, // read or write operation in progress
49+
canceling, // cancel requested, waiting for callback
50+
closing, // close operation in progress
5151
} = .deinitialized,
5252

5353
/// When true, file will close itself when the current operation completes.

test/internal/ban-limits.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"std.fs.cwd": 103,
3939
"std.log": 1,
4040
"std.mem.indexOfAny(u8": 0,
41-
"std.unicode": 30,
41+
"std.unicode": 27,
4242
"undefined != ": 0,
4343
"undefined == ": 0,
4444
"usingnamespace": 0

test/regression/issue/11970.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Regression test for issue #11970
22
// bun remove -g should remove binaries on Windows
3-
import { test, expect } from "bun:test";
3+
import { expect, test } from "bun:test";
4+
import { existsSync } from "fs";
45
import { bunEnv, bunExe, isWindows, tempDir } from "harness";
56
import { join } from "path";
6-
import { existsSync } from "fs";
77

88
test("bun remove -g should remove binaries", async () => {
99
if (!isWindows) {

0 commit comments

Comments
 (0)