felixge / felixge/nodeguide.com
typo in node beginner's guide (s/data/req)
Abierto
- Lenguaje dominante
- CSS
- Estrellas
- 368
- Forks
- 40
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
In first example under EventEmitters:
```
var data = '';
req
.on('data', function(chunk) {
data += chunk;
})
.on('end', function() {
console.log('POST data: %s', data);
})
```
Shouldn't that first line be a declaration of 'req' not 'data'?
thanks for the helpful docs!
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.