Skip to content

Commit 591e272

Browse files
authored
Merge pull request #204 from DaleStudy/update-for-season-3
์Šคํ„ฐ๋”” 3๊ธฐ๋ฅผ ์œ„ํ•œ ์›น์‚ฌ์ดํŠธ ์ปจํ…์ธ  ์—…๋ฐ์ดํŠธ
2 parents 23ef45d + 76c4ade commit 591e272

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

โ€Žcomponents/footer-link-list.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { css, html } from "../html-css-utils.js";
2-
import { APPLICATION_URL, CONTRIBUTING_URL, FAQ_URL } from "../data.js";
2+
import { APPLICATION_URL, CONTRIBUTING_URL, WIKI_URL } from "../data.js";
33

44
class FooterLinkList extends HTMLElement {
55
constructor() {
@@ -70,11 +70,11 @@ class FooterLinkList extends HTMLElement {
7070
return html`<ul>
7171
<li>
7272
<a
73-
href="${FAQ_URL}"
73+
href="${WIKI_URL}"
7474
target="_blank"
75-
aria-label="Read the FAQ discussion on Algorithm study group"
75+
aria-label="Read the Wiki page on Algorithm study group"
7676
>
77-
FAQ
77+
Wiki
7878
</a>
7979
</li>
8080

โ€Žcomponents/steps-section.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ class StepsSection extends HTMLElement {
6363
</ds-step>
6464
<ds-step step="3" icon-src="images/icon_step3.png">
6565
<p slot="content">
66-
๋งค์ฃผ ์Šคํ„ฐ๋”” ๋ฉค๋ฒ„๋“ค๋ผ๋ฆฌ
66+
์Šคํ„ฐ๋”” ๋ฉค๋ฒ„ ๊ฐ„์— ์นœ๋ฐ€๊ฐ์„ ์Œ“๊ธฐ ์œ„ํ•ด
6767
<ds-step-text-link link="${DISCORD_URL}">
6868
๋””์Šค์ฝ”๋“œ
6969
</ds-step-text-link>
70-
์—์„œ ๊ฐ„๋‹จํ•œ ๋ชจ์ž„์„ ๊ฐ€์ ธ์š”. ๋ฉค๋ฒ„ ๊ฐ„์˜ ์นœ๋ฐ€๊ฐ๋„ ์Œ“๊ณ  ํ•ด์™ธ ์ทจ์—…
71-
๊ด€๋ จํ•œ ์œ ์šฉํ•œ ์ •๋ณด๋„ ๊ณต์œ ํ•˜๊ณ  ์žˆ์–ด์š”.
70+
์—์„œ ์ž์œจ์ ์ธ ๋Œ€ํ™”์™€ ๋ชจ์ž„์„ ๊ฐ€์ ธ์š”. ํ•จ๊ป˜ ์ฝ”๋”ฉ ์‹œํ—˜/๋ฉด์ ‘ ์ค€๋น„๋ฅผ
71+
ํ•˜๊ณ  ํ•ด์™ธ ์ทจ์—… ๊ด€๋ จํ•œ ์œ ์šฉํ•œ ์ •๋ณด๋„ ๊ณต์œ ํ•˜๊ณ  ์žˆ์–ด์š”.
7272
</p>
7373
</ds-step>
7474
</ds-step-list>

โ€Ždata.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
export const APPLICATION_URL =
2-
"https://github.com/DaleStudy/leetcode-study/discussions/209";
2+
"https://github.com/DaleStudy/leetcode-study/discussions/620";
33
export const DISCORD_URL = "https://dales.link/discord";
44
export const PROJECT_URL = "https://github.com/orgs/DaleStudy/projects/3";
55
export const CONTRIBUTING_URL =
66
"https://github.com/DaleStudy/leetcode-study/blob/main/CONTRIBUTING.md";
7-
export const FAQ_URL =
8-
"https://github.com/DaleStudy/leetcode-study/discussions/54";
7+
export const WIKI_URL = "https://github.com/DaleStudy/leetcode-study/wiki";
98
export const ALGO_DALE_URL = "https://www.algodale.com/";
109
export const LINKED_IN_URL = "https://www.linkedin.com/in/daleseo/";
1110
export const GITHUB_URL = "https://github.com/DaleStudy/leetcode-study";

0 commit comments

Comments
ย (0)