Skip to content

Commit bbda446

Browse files
committed
소스파일 경로수정
1 parent 513ca8e commit bbda446

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/applicative-functor/of.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ const of = <R, A>(a: A): Reader<R, A> => () => a
6262

6363
**데모**
6464

65-
[`05_applicative.ts`](/05_applicative.ts)
65+
[`05_applicative.ts`](../05_applicative.ts)

src/functor/error-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ export const program = (ns: ReadonlyArray<number>): Option<string> =>
3838

3939
**데모** (optional)
4040

41-
[`04_functor.ts`](/04_functor.ts)
41+
[`04_functor.ts`](../04_functor.ts)
4242

4343
**문제**. `Task<A>` 는 항상 성공하는 비동기 호출을 의미합니다. 그렇다면 실패할 수 있는 계산작업은 어떻게 모델링할까요?

src/monad/manipulating-program.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,4 +470,4 @@ program5(DepsAsync)().then(console.log)
470470

471471
**데모**
472472

473-
[`06_game.ts`](/06_game.ts)
473+
[`06_game.ts`](../06_game.ts)

src/monoid-modeling/product-monoid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ const Monoid: Monoid<Point> = tuple(N.MonoidSum, N.MonoidSum)
3434

3535
**데모** (캔버스에 기하학적 도형을 그리는 시스템 구현)
3636

37-
[`03_shapes.ts`](/03_shapes.ts)
37+
[`03_shapes.ts`](../03_shapes.ts)

src/semigroup-modeling/semigroup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const SemigroupSum: Semigroup<number> = {
104104
}
105105
```
106106

107-
**문제**. 이전 데모 의 [`01_retry.ts`](/01_retry.ts) 에 정의된 `concat` combinator 를 `RetryPolicy` 타입에 대한 `Semigroup` 인스턴스로 정의할 수 있을까요?
107+
**문제**. 이전 데모 의 [`01_retry.ts`](../01_retry.ts) 에 정의된 `concat` combinator 를 `RetryPolicy` 타입에 대한 `Semigroup` 인스턴스로 정의할 수 있을까요?
108108

109109
다음은 semigroup `(number, *)` 을 정의한 것입니다. 여기서 `*` 는 숫자에 대한 덧셈을 의미합니다:
110110

src/what-is-fp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const program = pipe(
3030

3131
**데모**
3232

33-
[`00_pipe_and_flow.ts`](/00_pipe_and_flow.ts)
33+
[`00_pipe_and_flow.ts`](../00_pipe_and_flow.ts)
3434

3535
앞으로 함수형 프로그래밍이 위와 같은 구조를 만들어주는 도구를 제공하는지 보게될 것입니다.
3636

0 commit comments

Comments
 (0)