PEP 698: Fix capitalization of "TypeScript"
This commit is contained in:
parent
7a7b1f6a2e
commit
11669a5772
|
@ -141,7 +141,7 @@ Many popular programming languages support override checks. For example:
|
|||
- `Kotlin has <https://kotlinlang.org/docs/inheritance.html#overriding-methods/>`_ ``override``.
|
||||
- `Scala has <https://www.javatpoint.com/scala-method-overriding/>`_ ``override``.
|
||||
- `Swift has <https://docs.swift.org/swift-book/LanguageGuide/Inheritance.html#ID198/>`_ ``override``.
|
||||
- `Typescript has <https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-3.html#override-and-the---noimplicitoverride-flag/>`_ ``override``.
|
||||
- `TypeScript has <https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-3.html#override-and-the---noimplicitoverride-flag/>`_ ``override``.
|
||||
|
||||
Runtime Override Checks in Python
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
@ -293,7 +293,7 @@ Most of the typed, object-oriented programming languages we looked at have an
|
|||
easy way to require explicit overrides throughout a project:
|
||||
|
||||
- C#, Kotlin, Scala, and Swift always require explicit overrides
|
||||
- Typescript has a
|
||||
- TypeScript has a
|
||||
`--no-implicit-override <https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-3.html#override-and-the---noimplicitoverride-flag/>`_
|
||||
flag to force explicit overrides
|
||||
- In Hack and Java the type checker always treats overrides as opt-in, but
|
||||
|
|
Loading…
Reference in New Issue