Skip to content

Commit fa3cf53

Browse files
committed
Change ReCATPCHA to ReCAPTCHA in example :octocat:
1 parent 5610c60 commit fa3cf53

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ You can then use the reCAPTCHA. The default require, imports a wrapped component
2121

2222
```jsx
2323
var React = require("react");
24-
var ReCATPCHA = require("react-google-recaptcha");
24+
var ReCAPTCHA = require("react-google-recaptcha");
2525

2626
function onChange(value) {
2727
console.log("Captcha value:", value);
2828
}
2929

3030
React.render(
31-
<ReCATPCHA
31+
<ReCAPTCHA
3232
refs="recaptcha"
3333
sitekey="Your client site key"
3434
onChange={onChange}
@@ -61,7 +61,7 @@ You can also use the barebone components doing the following. Using that compone
6161

6262
```jsx
6363
var React = require("react");
64-
var ReCATPCHA = require("react-google-recaptcha/lib/recaptcha");
64+
var ReCAPTCHA = require("react-google-recaptcha/lib/recaptcha");
6565

6666
var grecaptchaObject = grecaptcha // You must provide access to the google grecaptcha object.
6767

@@ -70,7 +70,7 @@ function onChange(value) {
7070
}
7171

7272
React.render(
73-
<ReCATPCHA
73+
<ReCAPTCHA
7474
refs="recaptcha"
7575
sitekey="Your client site key"
7676
onChange={onChange}

0 commit comments

Comments
 (0)