]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/api/controllers/HistoryController.php
Merge pull request #1635 from ArthurHoaro/feature/phpcs
[github/shaarli/Shaarli.git] / application / api / controllers / HistoryController.php
index 9afcfa264430cd7af5910357bfcd07fbea797301..d83a3a25c97af2d26b40ce9df308fc71fdeba667 100644 (file)
@@ -1,6 +1,5 @@
 <?php
 
-
 namespace Shaarli\Api\Controllers;
 
 use Shaarli\Api\Exceptions\ApiBadParametersException;
@@ -41,7 +40,7 @@ class HistoryController extends ApiController
             throw new ApiBadParametersException('Invalid offset');
         }
 
-        // limit parameter is either a number of links or 'all' for everything.
+        // limit parameter is either a number of bookmarks or 'all' for everything.
         $limit = $request->getParam('limit');
         if (empty($limit)) {
             $limit = count($history);