From ba8a9c2e217a30e3a30d7130c9c4816c06344878 Mon Sep 17 00:00:00 2001 From: Gordey Doronin Date: Mon, 12 Oct 2015 17:58:33 +0600 Subject: [PATCH] Fixed wrong draw() method description It seems `draw()` method description has been copy-pasted from `destroy()` method. Now fixed. Proof http://datatables.net/reference/api/draw%28%29 --- jquery.dataTables/jquery.dataTables.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jquery.dataTables/jquery.dataTables.d.ts b/jquery.dataTables/jquery.dataTables.d.ts index 9a5ea2124..479c85e63 100755 --- a/jquery.dataTables/jquery.dataTables.d.ts +++ b/jquery.dataTables/jquery.dataTables.d.ts @@ -182,7 +182,7 @@ declare module DataTables { destroy(remove?: boolean): DataTable; /** - * Destroy the DataTables in the current context. + * Redraw the table. * * @param reset Reset (default) or hold the current paging position. A full re-sort and re-filter is performed when this method is called, which is why the pagination reset is the default action. */ @@ -1832,4 +1832,4 @@ declare module DataTables { } //#endregion "SettingsLegacy" -} \ No newline at end of file +}