Skip to content

Commit

Permalink
Docs: 문법 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
happycastle114 committed Nov 30, 2023
1 parent 4cb172d commit 7dcb77d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ export const GenderText = ({
{nowGenderRatio < meanGenderRatio
? "전국 대비 성별 다양성이 충분하다고 보기는 어려워요."
: nowGenderRatio === meanGenderRatio
? "전국 평균 수준이예요."
: "전국 평균 대비 높은 수준이예요."}
? "전국 평균 수준이에요."
: "전국 평균 대비 높은 수준이에요."}
</Text>
</Paragraph>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export const GenderText = ({
<Text strong>
{femalePop}명({nowPercentage}%)
</Text>
이예요. <br />
이에요. <br />
전국 지역 의회는 평균적으로 남성이{" "}
<Text strong>{100 - meanPercentage}%</Text>, 여성이{" "}
<Text strong>{meanPercentage}%</Text>를 차지하고 있어요. <br />
Expand All @@ -143,8 +143,8 @@ export const GenderText = ({
{nowGenderRatio < meanGenderRatio
? "전국 대비 성별 다양성이 충분하다고 보기는 어려워요."
: nowGenderRatio === meanGenderRatio
? "전국 평균 수준이예요."
: "전국 평균 대비 높은 수준이예요."}
? "전국 평균 수준이에요."
: "전국 평균 대비 높은 수준이에요."}
</Text>
</Paragraph>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ export const GenderText = ({
<Text strong>
{femalePop}명({nowPercentage}%)
</Text>
이예요. <br />
이에요. <br />
전체 국회의원 10명 중 남성은{" "}
<Text strong>{10 - Math.round(nowPercentage / 10)}</Text>명, 여성은{" "}
<Text strong>{Math.round(nowPercentage / 10)}</Text>명인 정도이예요.{" "}
<Text strong>{Math.round(nowPercentage / 10)}</Text>명인 정도이에요.{" "}
</Paragraph>
);
return <Paragraph>존재하지 않는 템플릿입니다.</Paragraph>;
Expand Down

0 comments on commit 7dcb77d

Please sign in to comment.