Skip to content

Commit ebb9835

Browse files
committed
Fixing typo "Fetchig" to "Fetching"
1 parent 1678afd commit ebb9835

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

GiftedListView.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var GiftedListView = React.createClass({
4646
withSections: false,
4747
onFetch(page, callback, options) { callback([]); },
4848

49-
paginationFetchigView: null,
49+
paginationFetchingView: null,
5050
paginationAllLoadedView: null,
5151
paginationWaitingView: null,
5252
refreshableFetchingView: null,
@@ -74,7 +74,7 @@ var GiftedListView = React.createClass({
7474
withSections: React.PropTypes.bool,
7575
onFetch: React.PropTypes.func,
7676

77-
paginationFetchigView: React.PropTypes.func,
77+
paginationFetchingView: React.PropTypes.func,
7878
paginationAllLoadedView: React.PropTypes.func,
7979
paginationWaitingView: React.PropTypes.func,
8080
refreshableFetchingView: React.PropTypes.func,
@@ -93,9 +93,9 @@ var GiftedListView = React.createClass({
9393
_getRows() { return this._rows; },
9494

9595

96-
paginationFetchigView() {
97-
if (this.props.paginationFetchigView) {
98-
return this.props.paginationFetchigView();
96+
paginationFetchingView() {
97+
if (this.props.paginationFetchingView) {
98+
return this.props.paginationFetchingView();
9999
}
100100

101101
return (
@@ -376,7 +376,7 @@ var GiftedListView = React.createClass({
376376

377377
_renderPaginationView() {
378378
if ((this.state.paginationStatus === 'fetching' && this.props.pagination === true) || (this.state.paginationStatus === 'firstLoad' && this.props.firstLoader === true)) {
379-
return this.paginationFetchigView();
379+
return this.paginationFetchingView();
380380
} else if (this.state.paginationStatus === 'waiting' && this.props.pagination === true && (this.props.withSections === true || this._getRows().length > 0)) {
381381
return this.paginationWaitingView(this._onPaginate);
382382
} else if (this.state.paginationStatus === 'allLoaded' && this.props.pagination === true) {

0 commit comments

Comments
 (0)