mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-27 13:32:56 +03:00
Merge pull request #3959 from vibhanshup/patch-2
[typescript/en] incorrect syntax in inheritance example
This commit is contained in:
commit
c72e1d5d97
@ -139,7 +139,7 @@ class Point3D extends Point {
|
||||
// Overwrite
|
||||
dist() {
|
||||
let d = super.dist();
|
||||
return Math.sqrt(d() * d() + this.z * this.z);
|
||||
return Math.sqrt(d * d + this.z * this.z);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user