We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc97f0 commit 3412e1eCopy full SHA for 3412e1e
code/examples/use-user.md
@@ -75,7 +75,7 @@ function useServerTime() {
75
```typescript
76
/** 사용자 이름은 20자 미만이어야 해요. */
77
function checkIsNameValid(name: string) {
78
- const isValid = name.length > 0 && name.length <= 20;
+ const isValid = name.length > 0 && name.length < 20;
79
80
return isValid;
81
}
en/code/examples/use-user.md
@@ -75,7 +75,7 @@ The functions `checkIsNameValid` and `checkIsAgeValid` are both used to validate
/** User names must be less than 20 characters. */
0 commit comments