Skip to content

Commit

Permalink
fix: docs typo (#1012)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiancihe committed 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
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.