summaryrefslogtreecommitdiff
path: root/buildstream/plugin.py
diff options
context:
space:
mode:
authorRichard Dale <richard.dale@codethink.co.uk>2018-10-16 18:03:51 +0100
committerJürg Billeter <j@bitron.ch>2018-10-16 20:40:39 +0100
commitac5b482d297a80e6f86af90ccb1cfb8e2d377774 (patch)
tree9de54a21c5b2674d5f9cac1f03d2bb17abd4d2d7 /buildstream/plugin.py
parentb023d5c01abbc2b74ee9d150b7999e647da0951a (diff)
downloadbuildstream-ac5b482d297a80e6f86af90ccb1cfb8e2d377774.tar.gz
Fix spelling of it's and its
Diffstat (limited to 'buildstream/plugin.py')
-rw-r--r--buildstream/plugin.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildstream/plugin.py b/buildstream/plugin.py
index d8cca2751..d01cbe112 100644
--- a/buildstream/plugin.py
+++ b/buildstream/plugin.py
@@ -169,7 +169,7 @@ class Plugin():
For elements, this is the project relative bst filename,
for sources this is the owning element's name with a suffix
- indicating it's index on the owning element.
+ indicating its index on the owning element.
For sources this is for display purposes only.
"""
@@ -208,8 +208,8 @@ class Plugin():
node (dict): The loaded configuration dictionary
Raises:
- :class:`.SourceError`: If its a :class:`.Source` implementation
- :class:`.ElementError`: If its an :class:`.Element` implementation
+ :class:`.SourceError`: If it's a :class:`.Source` implementation
+ :class:`.ElementError`: If it's an :class:`.Element` implementation
Plugin implementors should implement this method to read configuration
data and store it.
@@ -238,8 +238,8 @@ class Plugin():
"""Preflight Check
Raises:
- :class:`.SourceError`: If its a :class:`.Source` implementation
- :class:`.ElementError`: If its an :class:`.Element` implementation
+ :class:`.SourceError`: If it's a :class:`.Source` implementation
+ :class:`.ElementError`: If it's an :class:`.Element` implementation
This method is run after :func:`Plugin.configure() <buildstream.plugin.Plugin.configure>`
and after the pipeline is fully constructed.