Skip to content

Commit c402b4e

Browse files
committed
Fix spacing
1 parent 6f017e3 commit c402b4e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ All API calls return an `error` as the last return object. All successful calls
5656
```go
5757
result, response, err := client.SMS.SendSingle(context.Background(), &smsto.SmsSendSingleRequest{})
5858
if err != nil {
59-
//handle error
59+
//handle error
6060
}
6161
```
6262

@@ -66,12 +66,12 @@ if err != nil {
6666

6767
```go
6868
status, response, err := client.SMS.SendSingle(context.Background(), &SmsSendSingleRequest{
69-
Message: "This is test and \n this is a new line",
70-
To: "+35799999999999",
69+
Message: "This is test and \n this is a new line",
70+
To: "+35799999999999",
7171
})
7272

7373
if err != nil {
74-
log.Fatal(err)
74+
log.Fatal(err)
7575
}
7676

7777
log.Println(status.Success) // true

0 commit comments

Comments
 (0)