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:
authorStefan Weil <sw@weilnetz.de>2016-05-05 23:57:22 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2016-05-05 23:57:22 +0300
commit3e38fdf9546de1dc499799aac5008cd45de19ac4 (patch)
tree0605d269894ef9fd8572447a1891765dc63caa51 /core/Plugin
parent714f7c13849267707cab7c72539c33437858a11c (diff)
Fix some typos in comments (found by codespell) (#10120)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'core/Plugin')
-rw-r--r--core/Plugin/Report.php2
-rw-r--r--core/Plugin/Tasks.php4
-rw-r--r--core/Plugin/ViewDataTable.php2
3 files changed, 4 insertions, 4 deletions
diff --git a/core/Plugin/Report.php b/core/Plugin/Report.php
index 5ab8583a5a..053760d2d2 100644
--- a/core/Plugin/Report.php
+++ b/core/Plugin/Report.php
@@ -151,7 +151,7 @@ class Report
protected $isSubtableReport = false;
/**
- * Some reports may require additonal URL parameters that need to be sent when a report is requested. For instance
+ * Some reports may require additional URL parameters that need to be sent when a report is requested. For instance
* a "goal" report might need a "goalId": `array('idgoal' => 5)`.
* @var null|array
* @api
diff --git a/core/Plugin/Tasks.php b/core/Plugin/Tasks.php
index 19f9e5bb39..a34206c451 100644
--- a/core/Plugin/Tasks.php
+++ b/core/Plugin/Tasks.php
@@ -14,7 +14,7 @@ use Piwik\Scheduler\Task;
/**
* Base class for all Tasks declarations.
- * Tasks are usually meant as scheduled tasks that are executed regularily by Piwik in the background. For instance
+ * Tasks are usually meant as scheduled tasks that are executed regularly by Piwik in the background. For instance
* once every hour or every day. This could be for instance checking for updates, sending email reports, etc.
* Please don't mix up tasks with console commands which can be executed on the CLI.
*/
@@ -33,7 +33,7 @@ class Tasks
/**
* This method is called to collect all schedule tasks. Register all your tasks here that should be executed
- * regularily such as daily or monthly.
+ * regularly such as daily or monthly.
*/
public function schedule()
{
diff --git a/core/Plugin/ViewDataTable.php b/core/Plugin/ViewDataTable.php
index 6e190388b6..48ed462f1b 100644
--- a/core/Plugin/ViewDataTable.php
+++ b/core/Plugin/ViewDataTable.php
@@ -260,7 +260,7 @@ abstract class ViewDataTable implements ViewInterface
$this->config->show_footer_icons = (false == $this->requestConfig->idSubtable);
// the exclude low population threshold value is sometimes obtained by requesting data.
- // to avoid issuing unecessary requests when display properties are determined by metadata,
+ // to avoid issuing unnecessary requests when display properties are determined by metadata,
// we allow it to be a closure.
if (isset($this->requestConfig->filter_excludelowpop_value)
&& $this->requestConfig->filter_excludelowpop_value instanceof \Closure