Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translate 2020 08 10 react v17 rc.md #448

Merged
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
c766aea
WIP translation mixins considered harmful
DanielObara Jun 11, 2020
0c36e4b
Merge branch 'master' into mixins-considered-harmful
DanielObara Jun 11, 2020
b713f21
update more translations
DanielObara Jun 12, 2020
94f89c6
Finish translate
DanielObara Jun 13, 2020
eac0b4e
WIP translation mixins considered harmful
DanielObara Jun 11, 2020
9bd39c3
update more translations
DanielObara Jun 12, 2020
83dd148
Finish translate
DanielObara Jun 13, 2020
d917ea5
Merge branch 'mixins-considered-harmful' of https://github.com/Daniel…
DanielObara Jun 17, 2020
a44d7ff
Merge remote-tracking branch 'upstream/master'
DanielObara Sep 22, 2020
994156c
Starting translation
DanielObara Sep 11, 2020
f8a6c15
start translation
DanielObara Sep 12, 2020
4963ba7
Upgrades Graduais ok
DanielObara Sep 13, 2020
48f40b1
changes-to-event-delegation traduzido
DanielObara Sep 16, 2020
24d7161
fixing-potential-issues Translated
DanielObara Sep 17, 2020
1e42207
consistent-errors-for-returning-undefined Translated
DanielObara Sep 21, 2020
f94da6f
Installation and React changelog translanted
DanielObara Sep 22, 2020
8c57253
Changelog React DOM translated
DanielObara Sep 23, 2020
3da2414
concurrent-mode-experimental finish
DanielObara Sep 24, 2020
65e2178
Remove duplicated translation
DanielObara Sep 24, 2020
e34735e
Add line
DanielObara Sep 24, 2020
da91b85
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
233cf1c
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
5070691
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
aefb03e
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
c44dbc6
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
6b756ff
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
4f27afe
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
6f86dec
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
26e5685
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
bb7c300
Update 2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
901b151
Update 2020-08-10-react-v17-rc.md
DanielObara Sep 25, 2020
54b6f19
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Oct 4, 2020
92d01bb
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Oct 4, 2020
78b4652
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Oct 4, 2020
d30a349
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Oct 4, 2020
187e331
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Oct 4, 2020
a2c8367
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Oct 4, 2020
ae3b60a
Merge branch 'master' into Translate-2020-08-10-react-v17-rc.md
jhonmike Oct 5, 2020
2f04309
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Oct 5, 2020
3e0ba6e
Translated the missing line 336
DanielObara Oct 5, 2020
7316890
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Oct 5, 2020
75ed975
Update content/blog/2020-08-10-react-v17-rc.md
DanielObara Oct 5, 2020
faf3037
Merge branch 'master' into Translate-2020-08-10-react-v17-rc.md
jhonmike Oct 7, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions content/blog/2016-07-13-mixins-considered-harmful.md
Expand Up @@ -173,6 +173,7 @@ Digamos que queremos extrair a lógica de log dessas funções sem alterar suas

Novamente, parece mais intimidador do que realmente é:


```js
function withLogging(wrappedFunction) {
// Retorna uma função com a mesma API...
Expand All @@ -185,6 +186,7 @@ function withLogging(wrappedFunction) {
};
}
```
A função de ordem superior `withLogging` nos permite escrever `add` e `multiply` sem as instruções de log e depois envolvê-las para obter `addAndLog` e `multiplyAndLog` com exatamente as mesmas assinaturas de antes:
jhonmike marked this conversation as resolved.
Show resolved Hide resolved

A função de ordem superior `withLogging` nos permite escrever `add` e `multiply` sem as instruções de log e depois envolvê-las para obter `addAndLog` e `multiplyAndLog` com exatamente as mesmas assinaturas de antes:

Expand Down