From 08dbe38ced960704bec8bff38849728d38c449e4 Mon Sep 17 00:00:00 2001 From: atlanteh Date: Mon, 27 Feb 2017 17:15:45 +0200 Subject: [PATCH] fix number of callback parameters and alignment (#95) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f523273..fadea12 100644 --- a/README.md +++ b/README.md @@ -418,11 +418,11 @@ Every single built-in component's props can be dynamically extended using any on /> ``` -These callbacks are executed with each render of the element with three parameters: -1. Table State -1. RowInfo (undefined if not applicable) -1. Column (undefined if not applicable) -1. React Table Instance +These callbacks are executed with each render of the element with four parameters: + 1. Table State + 2. RowInfo (undefined if not applicable) + 3. Column (undefined if not applicable) + 4. React Table Instance This makes it extremely easy to add, say... a row click callback! ```javascript