vaxis: fix casing of function name

Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
This commit is contained in:
Tim Culverhouse 2024-01-19 12:39:42 -06:00
parent 79b48e4dea
commit 1e7c82fe44

View file

@ -117,7 +117,7 @@ pub fn Vaxis(comptime T: type) type {
}
/// exit the alternate screen
pub fn exitaltScreen(self: *Self) !void {
pub fn exitAltScreen(self: *Self) !void {
if (!self.alt_screen) return;
var tty = self.tty orelse return;
_ = try tty.write(ctlseqs.rmcup);