Skip to content

Commit 1166f34

Browse files
authored
Fix typo (#100)
1 parent 6b23fac commit 1166f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

โ€Žpages/functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ function buildName(firstName: string, lastName = "Smith") {
145145
return firstName + " " + lastName;
146146
}
147147

148-
let result1 = buildName("Bob"); // ์˜ฌ๋ฐ”๋ฅด๊ฒŒ ๋™์ž‘, "Bod Smith" ๋ฐ˜ํ™˜
148+
let result1 = buildName("Bob"); // ์˜ฌ๋ฐ”๋ฅด๊ฒŒ ๋™์ž‘, "Bob Smith" ๋ฐ˜ํ™˜
149149
let result2 = buildName("Bob", undefined); // ์—ฌ์ „ํžˆ ๋™์ž‘, ์—ญ์‹œ "Bob Smith" ๋ฐ˜ํ™˜
150150
let result3 = buildName("Bob", "Adams", "Sr."); // ์˜ค๋ฅ˜, ๋„ˆ๋ฌด ๋งŽ์€ ๋งค๊ฐœ๋ณ€์ˆ˜
151151
let result4 = buildName("Bob", "Adams"); // ์ •ํ™•ํ•จ

0 commit comments

Comments
ย (0)