Kaynağa Gözat

fix: typo in api.ts (#207)

Priestch 2 yıl önce
ebeveyn
işleme
bbbdc8b7a6
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      src/services/api.ts

+ 2 - 2
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(),