Skip to content

Commit a0eac9d

Browse files
Merge branch 'testwill/fmt'
anaskhan96#79
2 parents e965cf6 + c6e5bdd commit a0eac9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/KoreanExample/koreanExample.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
// 이 예제는 백준 코딩 테스트의 쉬운 문제입니다.
1414

1515
func main() {
16-
url := fmt.Sprintf("https://www.acmicpc.net/problem/1000")
16+
url := "https://www.acmicpc.net/problem/1000"
1717
// url의 마지막 숫자에 1000이외에 다른 숫자를 추가시키면,
1818
// 다른 문제가 등장합니다.
1919

examples/errors/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func main() {
1515
// Handle as required!
1616
}
1717

18-
url := fmt.Sprintf("https://xkcd.com/50")
18+
url := "https://xkcd.com/50"
1919
xkcd, err := soup.Get(url)
2020
if err != nil {
2121
// Handle it

0 commit comments

Comments
 (0)