From bbbdc8b7a6e9c41590e72c6cf6c10cf5e8baa75b Mon Sep 17 00:00:00 2001
From: Priestch <priestch@gmail.com>
Date: Sat, 24 Sep 2022 18:48:11 +0800
Subject: [PATCH] fix: typo in api.ts (#207)

---
 src/services/api.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/services/api.ts b/src/services/api.ts
index 96e9128..5f09bef 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(),
-- 
GitLab