Merge pull request #478 from tomarrell/patch-1

Fixed incorrect flow type output
This commit is contained in:
Rico Sta. Cruz 2018-05-14 09:22:52 +08:00 committed by GitHub
commit 9bb52c7a5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ type Album = {
```js
const a: Album = { } // ✓ OK
a.name = 'Blue' // ✓ OK
a.name = null // ✓ OK
a.name = null // ✓ Error
a.name = undefined // ✓ OK
```