diff --git a/core/tauri-utils/src/config.rs b/core/tauri-utils/src/config.rs index 555ca3251..45efa92e5 100644 --- a/core/tauri-utils/src/config.rs +++ b/core/tauri-utils/src/config.rs @@ -564,7 +564,7 @@ pub struct WindowConfig { /// Whether the window is transparent or not. /// /// Note that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri.conf.json > tauri > macOSPrivateApi`. - /// WARNING: Using private APIs on `macOS` prevents your application from being accepted for the `App Store`. + /// WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`. #[serde(default)] pub transparent: bool, /// Whether the window is maximized or not. diff --git a/tooling/api/src/window.ts b/tooling/api/src/window.ts index bb3b2ad1a..589aa5d8d 100644 --- a/tooling/api/src/window.ts +++ b/tooling/api/src/window.ts @@ -1407,7 +1407,7 @@ interface WindowOptions { /** * Whether the window is transparent or not. * Note that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri.conf.json > tauri > macOSPrivateApi`. - * WARNING: Using private APIs on `macOS` prevents your application from being accepted for the `App Store`. + * WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`. */ transparent?: boolean /** Whether the window should be maximized upon creation or not. */ diff --git a/tooling/cli/schema.json b/tooling/cli/schema.json index 0014139f6..81228dd17 100644 --- a/tooling/cli/schema.json +++ b/tooling/cli/schema.json @@ -571,7 +571,7 @@ "type": "boolean" }, "transparent": { - "description": "Whether the window is transparent or not.\n\nNote that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri.conf.json > tauri > macOSPrivateApi`. WARNING: Using private APIs on `macOS` prevents your application from being accepted for the `App Store`.", + "description": "Whether the window is transparent or not.\n\nNote that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri.conf.json > tauri > macOSPrivateApi`. WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`.", "default": false, "type": "boolean" },