fix typo

clinyong 2017-07-19 13:47:53 +08:00
parent 213c1237e4
commit 64f32ca82f

2
FAQ.md

@ -294,7 +294,7 @@ In general, you should *never* find yourself declaring an `interface` with no pr
> type SomeUrl = string;
> type FirstName = string;
> let x: SomeUrl = "http://www.typescriptlang.org/";
> let y: FirstName = "Bob';
> let y: FirstName = "Bob";
> x = y; // Expected error
> ```