documentation: fix MacOSDockDropBehavior valid values (#8752)

The documentation shows that the enum values should be "new-window" and
"new-tab",
However, "new-window" currently fails, but "window" is still accepted.
This commit is contained in:
Mitchell Hashimoto
2025-09-18 12:46:54 -07:00
committed by GitHub

View File

@@ -2710,7 +2710,7 @@ keybind: Keybinds = .{},
///
/// * `new-tab` - Create a new tab in the current window, or open
/// a new window if none exist.
/// * `new-window` - Create a new window unconditionally.
/// * `window` - Create a new window unconditionally.
///
/// The default value is `new-tab`.
///