From db1ea98512a250a26767ed2acba1b0f9bec809fb Mon Sep 17 00:00:00 2001 From: studystill <137779852+studystill@users.noreply.github.com> Date: Mon, 11 Mar 2024 08:43:12 +0800 Subject: [PATCH] chore(core): remove repetitive word (#9136) Signed-off-by: studystill --- core/tauri/scripts/ipc-protocol.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tauri/scripts/ipc-protocol.js b/core/tauri/scripts/ipc-protocol.js index 10679aa57..a3ea522e0 100644 --- a/core/tauri/scripts/ipc-protocol.js +++ b/core/tauri/scripts/ipc-protocol.js @@ -9,7 +9,7 @@ const linuxIpcProtocolEnabled = __TEMPLATE_linux_ipc_protocol_enabled__ let customProtocolIpcFailed = false - // on Linux we only use the custom-protocol-based IPC if the the linux-ipc-protocol Cargo feature is enabled + // on Linux we only use the custom-protocol-based IPC if the linux-ipc-protocol Cargo feature is enabled // on Android we never use it because Android does not have support to reading the request body const canUseCustomProtocol = osName === 'linux' ? linuxIpcProtocolEnabled : osName !== 'android'