Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/DataTable/Filter/Limit.php')
-rw-r--r--core/DataTable/Filter/Limit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/DataTable/Filter/Limit.php b/core/DataTable/Filter/Limit.php
index c06bac49c5..5cf848a50e 100644
--- a/core/DataTable/Filter/Limit.php
+++ b/core/DataTable/Filter/Limit.php
@@ -13,9 +13,9 @@ use Piwik\DataTable\BaseFilter;
/**
* Delete all rows from the table that are not in the given [offset, offset+limit) range.
- *
+ *
* **Basic example usage**
- *
+ *
* // delete all rows from 5 -> 15
* $dataTable->filter('Limit', array(5, 10));
*