Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix typos of it's ▶︎ its, where appropriate. #444

Merged
merged 1 commit into from Feb 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Component/VCalendar.php
Expand Up @@ -269,7 +269,7 @@ public function getBaseComponent($componentName = null)
* If this calendar object, has events with recurrence rules, this method
* can be used to expand the event into multiple sub-events.
*
* Each event will be stripped from it's recurrence information, and only
* Each event will be stripped from its recurrence information, and only
* the instances of the event in the specified timerange will be left
* alone.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/FreeBusyGenerator.php
Expand Up @@ -71,7 +71,7 @@ class FreeBusyGenerator
/**
* A VAVAILABILITY document.
*
* If this is set, it's information will be included when calculating
* If this is set, its information will be included when calculating
* freebusy time.
*
* @var Document
Expand Down
2 changes: 1 addition & 1 deletion lib/Parameter.php
Expand Up @@ -29,7 +29,7 @@ class Parameter extends Node
/**
* vCard 2.1 allows parameters to be encoded without a name.
*
* We can deduce the parameter name based on it's value.
* We can deduce the parameter name based on its value.
*
* @var bool
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/Parser/MimeDir.php
Expand Up @@ -415,7 +415,7 @@ protected function readProperty($line)
}

// vCard 2.1 states that parameters may appear without a name, and only
// a value. We can deduce the value based on it's name.
// a value. We can deduce the value based on its name.
//
// Our parser will get those as parameters without a value instead, so
// we're filtering these parameters out first.
Expand Down
2 changes: 1 addition & 1 deletion lib/Property.php
Expand Up @@ -155,7 +155,7 @@ public function getParts()
*
* If a parameter with same name already existed, the values will be
* combined.
* If nameless parameter is added, we try to guess it's name.
* If nameless parameter is added, we try to guess its name.
*
* @param string $name
* @param string|null|array $value
Expand Down
2 changes: 1 addition & 1 deletion lib/Reader.php
Expand Up @@ -55,7 +55,7 @@ public static function read($data, $options = 0, $charset = 'UTF-8')
* The options argument is a bitfield. Pass any of the OPTIONS constant to
* alter the parsers' behaviour.
*
* You can either a string, a readable stream, or an array for it's input.
* You can either a string, a readable stream, or an array for its input.
* Specifying the array is useful if json_decode was already called on the
* input.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/Recur/EventIterator.php
Expand Up @@ -237,7 +237,7 @@ public function getDtEnd()
/**
* Returns a VEVENT for the current iterations of the event.
*
* This VEVENT will have a recurrence id, and it's DTSTART and DTEND
* This VEVENT will have a recurrence id, and its DTSTART and DTEND
* altered.
*
* @return VEvent
Expand Down
2 changes: 1 addition & 1 deletion lib/Splitter/ICalendar.php
Expand Up @@ -38,7 +38,7 @@ class ICalendar implements SplitterInterface
/**
* Constructor.
*
* The splitter should receive an readable file stream as it's input.
* The splitter should receive an readable file stream as its input.
*
* @param resource $input
* @param int $options parser options, see the OPTIONS constants
Expand Down
2 changes: 1 addition & 1 deletion lib/Splitter/SplitterInterface.php
Expand Up @@ -20,7 +20,7 @@ interface SplitterInterface
/**
* Constructor.
*
* The splitter should receive an readable file stream as it's input.
* The splitter should receive an readable file stream as its input.
*
* @param resource $input
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/Splitter/VCard.php
Expand Up @@ -38,7 +38,7 @@ class VCard implements SplitterInterface
/**
* Constructor.
*
* The splitter should receive an readable file stream as it's input.
* The splitter should receive an readable file stream as its input.
*
* @param resource $input
* @param int $options parser options, see the OPTIONS constants
Expand Down