Skip to content

Commit

Permalink
chore: replace wording
Browse files Browse the repository at this point in the history
  • Loading branch information
dotoleeoak committed May 14, 2024
1 parent 6168489 commit e48389e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dev/intro/style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

### 중복된 맥락을 피해요.

파일 이름이나 method, 변수 이름을 지을 때 중복된 맥락을 피해주세요. 중복된 맥락은 코드를 읽는 사람에게 불필요한 정보를 제공하고 코드를 이해하기 어렵게 만들어요.
파일 이름이나 method, 변수 이름을 지을 때 중복된 맥락을 피해주세요.
중복된 맥락은 코드를 읽는 사람에게 불필요한 정보를 제공하고 코드를 길게 만들어요.
예를 들어 파일이나 class 이름에 `User`라는 단어가 들어가면 `User`라는 단어를 변수나 method 이름에 사용하지 않아요.

```typescript
class User {
Expand All @@ -19,7 +21,7 @@ class User {
### 불필요한 Type을 피해요.
TypeScript는 타입 추론을 지원하기 때문에 변수나 함수의 이름에 타입을 명시할 필요가 없어요. 타입을 명시하는 것은 코드를 읽는 사람에게 불필요한 정보를 제공하고 코드를 이해하기 어렵게 만들어요.
TypeScript는 타입 추론을 지원하기 때문에 변수나 함수의 이름에 타입을 명시할 필요가 없어요. 타입을 명시하는 것은 코드를 길고 복잡하게 만들어요.
```typescript
class User {
Expand Down

0 comments on commit e48389e

Please sign in to comment.