1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 09:14:39 +02:00

Fix a bunch of typos

This commit is contained in:
HairyFotr
2017-08-23 10:14:39 +02:00
parent 9c5a67ca0f
commit 985d23a52b
47 changed files with 95 additions and 95 deletions

View File

@@ -50,7 +50,7 @@ function bigHorribleAlert(): void {
// Functions are first class citizens, support the lambda "fat arrow" syntax and
// use type inference
// The following are equivalent, the same signature will be infered by the
// The following are equivalent, the same signature will be inferred by the
// compiler, and same JavaScript will be emitted
let f1 = function (i: number): number { return i * i; }
// Return type inferred