Fix typo in Method Overriding in Typescript (#4306)

pull/4325/head
Jesús 1 year ago committed by GitHub
parent c1d37dead3
commit 430350fe88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/data/roadmaps/typescript/content/108-classes/105-method-overriding.md

@ -2,7 +2,7 @@
In TypeScript, method overriding is a mechanism where a subclass provides a new implementation for a method that is already defined in its parent class. This allows the subclass to inherit the behavior of the parent class, but change its behavior to fit its own needs. In TypeScript, method overriding is a mechanism where a subclass provides a new implementation for a method that is already defined in its parent class. This allows the subclass to inherit the behavior of the parent class, but change its behavior to fit its own needs.
To override a method in TypeScript, you need to use the `override` keyword, and the signature of the method in the subclass must match exactly with the signature of the method in the parent class. To override a method in TypeScript the signature of the method in the subclass must match exactly with the signature of the method in the parent class.
```typescript ```typescript
class Animal { class Animal {

Loading…
Cancel
Save