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:
authorLukas Winkler <git@lw1.at>2020-04-08 13:30:16 +0300
committerGitHub <noreply@github.com>2020-04-08 13:30:16 +0300
commit2c5c72e2da4c015efa78069c9c1b407fc55a6483 (patch)
treefecec8638249689fb02b93a883517cc7c64f52d6 /core/Plugin/Segment.php
parentbb4cad6d756e119f92f397a8dd4574d0d1bf539c (diff)
many typo fixes in the code thanks to codespell (#15730)
* many typo fixes in the code thanks to codespell * reset submodules I really need to stop using `git commit -a` * reset change in library * rebuilt piwik.js * fix test * updates expected UI file Co-authored-by: sgiehl <sgiehl@users.noreply.github.com> Co-authored-by: Stefan Giehl <stefan@matomo.org>
Diffstat (limited to 'core/Plugin/Segment.php')
-rw-r--r--core/Plugin/Segment.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Plugin/Segment.php b/core/Plugin/Segment.php
index cfaaa4ef1c..0da1ebbc69 100644
--- a/core/Plugin/Segment.php
+++ b/core/Plugin/Segment.php
@@ -131,7 +131,7 @@ class Segment
/**
* Sometimes you want users to set values that differ from the way they are actually stored. For instance if you
* want to allow to filter by any URL than you might have to resolve this URL to an action id. Or a country name
- * maybe has to be mapped to a 2 letter country code. You can do this by specifing either a callable such as
+ * maybe has to be mapped to a 2 letter country code. You can do this by specifying either a callable such as
* `array('Classname', 'methodName')` or by passing a closure. There will be four values passed to the given closure
* or callable: `string $valueToMatch`, `string $segment` (see {@link setSegment()}), `string $matchType`
* (eg SegmentExpression::MATCH_EQUAL or any other match constant of this class) and `$segmentName`.