diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2019-11-24 12:11:48 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-24 12:11:48 +0530 |
commit | b23a2cc28fc336e760e012f95ee1b0538b2f801e (patch) | |
tree | 197d4b790f4bcbd8a86d8d88acb7412c5153ce66 /typescript.html.markdown | |
parent | c618eeb603b94a4592b9bc06ebf97722ef2b16a9 (diff) | |
parent | 7045e651d2a0735fc27ab3b643579adf7662f3d8 (diff) |
Merge branch 'master' into patch-11
Diffstat (limited to 'typescript.html.markdown')
-rw-r--r-- | typescript.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/typescript.html.markdown b/typescript.html.markdown index cf2111d5..00f0cbc5 100644 --- a/typescript.html.markdown +++ b/typescript.html.markdown @@ -16,7 +16,7 @@ This article will focus only on TypeScript extra syntax, as opposed to [JavaScript](/docs/javascript). To test TypeScript's compiler, head to the -[Playground] (http://www.typescriptlang.org/Playground) where you will be able +[Playground](https://www.typescriptlang.org/play) where you will be able to type code, have auto completion and directly see the emitted JavaScript. ```ts @@ -199,7 +199,7 @@ interface Person { } var p1: Person = { name: "Tyrone", age: 42 }; -p1.age = 25; // Error, p1.x is read-only +p1.age = 25; // Error, p1.age is read-only var p2 = { name: "John", age: 60 }; var p3: Person = p2; // Ok, read-only alias for p2 |