We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef81b7c commit deb7b82Copy full SHA for deb7b82
content/docs/faq-functions.md
@@ -291,9 +291,9 @@ class Searchbox extends React.Component {
291
}
292
293
handleChange(e) {
294
- // o React faz pools no eventos. Então lemos o valor antes do debounce.
+ // o React faz pools no eventos. Então lemos o valor antes do debounce.
295
// Alternativamente podemos chamar `event.persist()` e passar todo o evento.
296
-Para mais informações veja: reactjs.org/docs/events.html#event-pooling
+ // Para mais informações veja: reactjs.org/docs/events.html#event-pooling
297
this.emitChangeDebounced(e.target.value);
298
299
0 commit comments