From 8724f822fcc15db62d49d2b5272a51912a5da2a3 Mon Sep 17 00:00:00 2001 From: Underthestars-zhy Date: Sat, 29 Apr 2023 20:52:57 +0800 Subject: [PATCH] syntax fix --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d157837..4374f5d 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ let mobbinAPI = MobbinAPI(userInfo: UserInfo(...), token: Token(...)) ```swift struct UserInfo { -... + ... } ``` @@ -74,7 +74,7 @@ After a successful login, MobbinAPI can obtain a token, which will be used in al ```swift struct Token { -... + ... } ``` @@ -122,7 +122,7 @@ let iOSAppsCount = try await mobbinAPI.iOSAppsCount ```swift struct App { -.... + .... } ``` @@ -169,7 +169,7 @@ Mobbin can provide all the screens snapshots of the app. ```swift struct Screen { -.... + .... } ``` @@ -196,7 +196,7 @@ Mobbin can provide the entire flows of the app, which consists of a series of sc ```swift struct Flow { -.... + ... } ``` @@ -213,10 +213,10 @@ struct Flow { ```swift struct Flow { -... -struct Screen { -.... -} + ... + struct Screen { + .... + } } ```