From 634169866d50e36b5bc4787a56667f1215e2ec7f Mon Sep 17 00:00:00 2001 From: beasta Date: Wed, 29 Aug 2018 11:18:18 -0700 Subject: [PATCH] Change console.log suggestion to console.dir --- koans/03-WhatsYourName.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koans/03-WhatsYourName.jsx b/koans/03-WhatsYourName.jsx index af7cef2..c29619c 100644 --- a/koans/03-WhatsYourName.jsx +++ b/koans/03-WhatsYourName.jsx @@ -72,7 +72,7 @@ class WhatsYourName extends React.Component { // You need to correct the call of `setState` method. Just try to set // the `name` field to the value passed in event. // - // Hint: use `console.log` to check `event.target`. You will find text + // Hint: use `console.dir` to check `event.target`. You will find text // entered to the input there. onNameChange(event) { // Huh... There's something wrong here...