Skip to content

Commit

Permalink
Merge branch 'testwill/fmt'
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteSizedMarius committed Feb 16, 2024
2 parents e965cf6 + c6e5bdd commit a0eac9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/KoreanExample/koreanExample.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
// 이 예제는 백준 코딩 테스트의 쉬운 문제입니다.

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

Expand Down
2 changes: 1 addition & 1 deletion examples/errors/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func main() {
// Handle as required!
}

url := fmt.Sprintf("https://xkcd.com/50")
url := "https://xkcd.com/50"
xkcd, err := soup.Get(url)
if err != nil {
// Handle it
Expand Down

0 comments on commit a0eac9d

Please sign in to comment.