Skip to content

Commit b59f9ae

Browse files
committed
Update twitter handle
1 parent 267f843 commit b59f9ae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

example/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const Demo = React.createClass({
1414
* cannot use `key={i}` because all three JSX tags could get the same key.
1515
*/
1616
render() {
17-
const text = 'Hey @ian_989, check out this link https://github.com/iansinnott/ Hope to see you at #reactconf';
17+
const text = 'Hey @ian_sinn, check out this link https://github.com/iansinnott/ Hope to see you at #reactconf';
1818
let replacedText;
1919

2020
// Match URLs

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ You can run multiple replacements on one string by calling the function multiple
7070
```js
7171
const reactStringReplace = require('react-string-replace')
7272

73-
const text = 'Hey @ian_989, check out this link https://github.com/iansinnott/ Hope to see you at #reactconf';
73+
const text = 'Hey @ian_sinn, check out this link https://github.com/iansinnott/ Hope to see you at #reactconf';
7474
let replacedText;
7575

7676
// Match URLs
@@ -90,7 +90,7 @@ replacedText = replaceString(replacedText, /#(\w+)/g, match => (
9090

9191
// => [
9292
// 'Hey ',
93-
// <a href='https://twitter.com/ian_989'>@ian_989</a>
93+
// <a href='https://twitter.com/ian_sinn'>@ian_sinn</a>
9494
// ', check out this link ',
9595
// <a href='https://github.com/iansinnott/'>https://github.com/iansinnott/</a>,
9696
// '. Hope to see you at ',

0 commit comments

Comments
 (0)