diff --git a/src/manual/complex-and-rational-numbers.md b/src/manual/complex-and-rational-numbers.md index 942273a..ffdb4c9 100644 --- a/src/manual/complex-and-rational-numbers.md +++ b/src/manual/complex-and-rational-numbers.md @@ -192,7 +192,7 @@ julia> -4//-12 1//3 ``` -분자가 분모가 서로소인 상태는 유일하며, 두 유리수가 같은지 보려면 각 분자와 분모가 같은지 보면 된다. +분자와 분모가 서로소인 상태는 유일하며, 두 유리수가 같은지 보려면 각 분자와 분모가 같은지 보면 된다. 유리수의 분자와 분모는 [`numerator`](@ref)와 [`denominator`](@ref)함수로 확인할 수 있다: ```jldoctest