Skip to content

Commit cdce7e1

Browse files
committed
fix: file encoding problem. ANSII => UTF8
1 parent 0786426 commit cdce7e1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/app/views/home.cljs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
[app.tutorial :refer [tutorial]]))
99

1010
(def intro-title
11-
"잠깐 시간 괜찮으세요?")
11+
"잠깐 시간 괜찮으세요?")
1212

1313
(def intro-content
14-
"> 익숙함을 추구한다면, 결코 새로운 것을 배울 수 없을 것이다. - 리치 히키
14+
"> 익숙함을 추구한다면, 결코 새로운 것을 배울 수 없을 것이다. - 리치 히키
1515
16-
자, 한번 놀아봅시다!
16+
자, 한번 놀아봅시다!
1717
18-
<span id=\"location-of-editor\">오른쪽에</span>
19-
여러분이 뭔가 써 넣으면 *읽고(Read) 평가하고(Eval) 출력하길(Print) 반복(Loop)*하는 **REPL**이 있습니다.
18+
<span id=\"location-of-editor\">오른쪽에</span>
19+
여러분이 뭔가 써 넣으면 *읽고(Read) 평가하고(Eval) 출력하길(Print) 반복(Loop)*하는 **REPL**이 있습니다.
2020
21-
`(+ 1 2)`을 타이핑하거나, 그냥 코드를 클릭하면 코드가 자동으로 입력됩니다.
22-
더 많은 명령어를 보실려면 `(도움)`을 입력하세요.
21+
`(+ 1 2)`을 타이핑하거나, 그냥 코드를 클릭하면 코드가 자동으로 입력됩니다.
22+
더 많은 명령어를 보실려면 `(도움)`을 입력하세요.
2323
24-
준비가 되셨으면 `(시작)`을 입력하세요!")
24+
준비가 되셨으면 `(시작)`을 입력하세요!")
2525

2626
(defn compute-step
2727
"Returns a list of `title` and `content`
@@ -129,7 +129,7 @@
129129
location-of-editor-dom (.getElementById js/document "location-of-editor")]
130130
(when location-of-editor-dom
131131
(set! (. location-of-editor-dom -innerHTML)
132-
(if (< window-width 640) "바로 아래" "바로 오른쪽")))))
132+
(if (< window-width 640) "바로 아래" "바로 오른쪽")))))
133133

134134
(.addEventListener js/window "load" update-location-of-editor)
135135
(.addEventListener js/window "resize" update-location-of-editor)

0 commit comments

Comments
 (0)