Skip to content

Commit

Permalink
fix indentions (#1680)
Browse files Browse the repository at this point in the history
Fix indention for READMEs.
  • Loading branch information
efectn committed Dec 30, 2021
1 parent f98a9ba commit 894fa9d
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Expand Up @@ -204,7 +204,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_de.md
Expand Up @@ -202,7 +202,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_es.md
Expand Up @@ -202,7 +202,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_fa.md
Expand Up @@ -255,7 +255,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_fr.md
Expand Up @@ -204,7 +204,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_he.md
Expand Up @@ -261,7 +261,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_id.md
Expand Up @@ -204,7 +204,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_it.md
Expand Up @@ -203,7 +203,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_ja.md
Expand Up @@ -207,7 +207,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_ko.md
Expand Up @@ -208,7 +208,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_nl.md
Expand Up @@ -208,7 +208,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_pt.md
Expand Up @@ -204,7 +204,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_ru.md
Expand Up @@ -204,7 +204,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_sa.md
Expand Up @@ -224,7 +224,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_tr.md
Expand Up @@ -203,7 +203,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Cikti:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_zh-CN.md
Expand Up @@ -204,7 +204,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down
2 changes: 1 addition & 1 deletion .github/README_zh-TW.md
Expand Up @@ -206,7 +206,7 @@ func main() {
}).Name("api")

data, _ := json.MarshalIndent(app.GetRoute("api"), "", " ")
fmt.Print(string(data))
fmt.Print(string(data))
// Prints:
// {
// "method": "GET",
Expand Down

0 comments on commit 894fa9d

Please sign in to comment.