diff --git a/src/config/Config.zig b/src/config/Config.zig index bf02636c9a..3142e3dd92 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -418,7 +418,7 @@ foreground: Color = .{ .r = 0xFF, .g = 0xFF, .b = 0xFF }, /// Background image for the window. @"background-image": SinglePath = .{}, -/// Background image opactity +/// Background image opacity @"background-image-opacity": f32 = 1.0, /// Background image mode to use. diff --git a/src/renderer/OpenGL.zig b/src/renderer/OpenGL.zig index 8e92df4121..ab0813f771 100644 --- a/src/renderer/OpenGL.zig +++ b/src/renderer/OpenGL.zig @@ -140,7 +140,7 @@ draw_mutex: DrawMutex = drawMutexZero, /// terminal is in reversed mode. draw_background: terminal.color.RGB, -/// The background image(s) to draw. Currentlly, we always draw the last image. +/// The background image(s) to draw. Currently, we always draw the last image. background_image: configpkg.SinglePath, /// The opacity of the background image. Not to be confused with background-opacity