diff --git a/src/services/api.ts b/src/services/api.ts index 96e9128f3bbf048b8658069f88a8397fae840281..5f09bef9579a9fdfe46f9d6aa8d32c6e36e4a76f 100644 --- a/src/services/api.ts +++ b/src/services/api.ts @@ -5,7 +5,7 @@ let axiosIns: AxiosInstance = null!; let server = ""; let secret = ""; -/// initialize some infomation +/// initialize some information /// enable force update axiosIns export async function getAxios(force: boolean = false) { if (axiosIns && !force) return axiosIns; @@ -97,7 +97,7 @@ async function getProxiesInner() { } } -/// Get the Proxy infomation +/// Get the Proxy information export async function getProxies() { const [proxyRecord, providerRecord] = await Promise.all([ getProxiesInner(),