diff --git a/src/app.zig b/src/app.zig index 13eba3b..79db1e1 100644 --- a/src/app.zig +++ b/src/app.zig @@ -17,7 +17,7 @@ const log = std.log.scoped(.app); /// /// _R_ is the type function for the `Renderer` to use. The parameter boolean /// will be set to the _fullscreen_ value at compile time. The corresponding -/// `Renderer` type is accessable through the generated type of this function. +/// `Renderer` type is accessible through the generated type of this function. /// /// _fullscreen_ will be used to configure the `App` and the `Renderer` to /// respect the corresponding configuration whether to render a fullscreen tui diff --git a/src/event.zig b/src/event.zig index 3a93935..736042c 100644 --- a/src/event.zig +++ b/src/event.zig @@ -69,7 +69,7 @@ pub fn mergeTaggedUnions(comptime A: type, comptime B: type) type { } }); } -// Determine at `comptime` wether the provided type `E` is an `union(enum)`. +// Determine at `comptime` whether the provided type `E` is an `union(enum)`. pub fn isTaggedUnion(comptime E: type) bool { switch (@typeInfo(E)) { .Union => |u| { diff --git a/src/widget.zig b/src/widget.zig index d99a1f3..6cf43a0 100644 --- a/src/widget.zig +++ b/src/widget.zig @@ -72,7 +72,7 @@ pub fn Widget(comptime Event: type) type { }; } - // TODO: import and export of `Widget` implementations (with corresponding intialization using `Event`) + // TODO: import and export of `Widget` implementations (with corresponding initialization using `Event`) pub const RawText = @import("widget/RawText.zig").Widget(Event); }; }