Skip to content

Commit b9d3a92

Browse files
chrisbodhipaperclover
authored andcommitted
Fix typo in HTTPThread name. (oven-sh#5376)
1 parent 66feb3f commit b9d3a92

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bun.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ pub fn StringEnum(comptime Type: type, comptime Map: anytype, value: []const u8)
664664

665665
pub const Bunfig = @import("./bunfig.zig").Bunfig;
666666

667-
pub const HTTPThead = @import("./http_client_async.zig").HTTPThread;
667+
pub const HTTPThread = @import("./http_client_async.zig").HTTPThread;
668668

669669
pub const Analytics = @import("./analytics/analytics_thread.zig");
670670

src/resolver/resolver.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ pub const Resolver = struct {
539539

540540
pub fn getPackageManager(this: *Resolver) *PackageManager {
541541
return this.package_manager orelse brk: {
542-
bun.HTTPThead.init() catch unreachable;
542+
bun.HTTPThread.init() catch unreachable;
543543
const pm = PackageManager.initWithRuntime(
544544
this.log,
545545
this.opts.install,

0 commit comments

Comments
 (0)