Skip to content
This repository was archived by the owner on Dec 9, 2021. It is now read-only.

Commit 0c3d04c

Browse files
author
Robert S
committed
call method with the correct scope
1 parent a48cad4 commit 0c3d04c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utilities/BaseReducer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class BaseReducer {
1313
return state;
1414
}
1515

16-
// Calls method with the correct "this" and returns the modified state from the method.
16+
// Calls the method with the correct "this" and returns the modified state.
1717
return method.call(this, state, action);
1818
};
1919
}

0 commit comments

Comments
 (0)