Skip to content

Commit

Permalink
Typescript -> TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
verhovsky committed Dec 20, 2024
1 parent 8938aa8 commit 2e11cb8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
if grep -rI --include='*.md' $'\u000D' .; then
exit 1
fi
- name: "GitHub/JavaScript/TypeScript capitalized properly"
run: |
if grep -rI --include='*.md' -E "Github|Javascript|Typescript" .; then
exit 1
fi
- name: Lint Markdown
run: mdl . --ignore-front-matter -r MD003,MD005,MD011,MD018,MD019,MD023,MD025,MD027,MD028,MD030,MD035,MD037,MD038,MD039,MD046,MD047
- name: Lint frontmatter
Expand Down
4 changes: 2 additions & 2 deletions pt-br/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ translators:
- ["Gabriel Gomes", "https://github.com/gabrielgomesferraz"]
---

Typescript é uma linguagem que visa facilitar o desenvolvimento de aplicações em grande escala escritos em JavaScript.
Typescript acrescenta conceitos comuns como classes, módulos, interfaces, genéricos e (opcional) tipagem estática para JavaScript.
TypeScript é uma linguagem que visa facilitar o desenvolvimento de aplicações em grande escala escritos em JavaScript.
TypeScript acrescenta conceitos comuns como classes, módulos, interfaces, genéricos e (opcional) tipagem estática para JavaScript.
É um super conjunto de JavaScript: todo o código JavaScript é TypeScript válido então ele pode ser adicionado diretamente a qualquer projeto. O compilador emite TypeScript JavaScript.

Este artigo irá se concentrar apenas na sintaxe extra do TypeScript, ao contrário de [JavaScript](../javascript/).
Expand Down

0 comments on commit 2e11cb8

Please sign in to comment.