Skip to content

Commit

Permalink
fix: docs typo (#1012)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiancihe authored Sep 9, 2020
1 parent a69cdad commit 3ffb173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/zh-cn/schema-develop/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -1383,12 +1383,12 @@ const App = () => {
type: 'warning',
message: '第一阶梯'
}
} else if ((value >= 100) & (value < 500)) {
} else if ((value >= 100) && (value < 500)) {
return {
type: 'warning',
message: '第二阶梯'
}
} else if ((value >= 500) & (value < 1000)) {
} else if ((value >= 500) && (value < 1000)) {
return {
type: 'warning',
message: '第三阶梯'
Expand Down

0 comments on commit 3ffb173

Please sign in to comment.