@@ -77,16 +77,16 @@ def add_arguments(
7777 """
7878 Add the command line arguments for the package selection extensions.
7979
80- The function will call :function :`add_package_discovery_arguments` to add
80+ The function will call :func :`add_package_discovery_arguments` to add
8181 the package discovery arguments.
8282
8383 :param parser: The argument parser
8484 :param discovery_extensions: The package discovery extensions to use, if
8585 `None` is passed use the extensions provided by
86- :function :`get_package_discovery_extensions`
86+ :func :`get_package_discovery_extensions`
8787 :param selection_extensions: The package selection extensions to use, if
8888 `None` is passed use the extensions provided by
89- :function :`get_package_selection_extensions`
89+ :func :`get_package_selection_extensions`
9090 """
9191 add_package_discovery_arguments (parser , extensions = discovery_extensions )
9292
@@ -142,9 +142,9 @@ def get_packages(
142142 Get the selected package decorators in topological order.
143143
144144 The overview of the process:
145- * Get the package descriptors
146- * Order them topologically
147- * Select the packages based on the command line arguments
145+ * Get the package descriptors
146+ * Order them topologically
147+ * Select the packages based on the command line arguments
148148
149149 :param additional_argument_names: A list of additional arguments to
150150 consider
@@ -154,16 +154,16 @@ def get_packages(
154154 immediate upstream category which included the dependency
155155 :param discovery_extensions: The package discovery extensions to use, if
156156 `None` is passed use the extensions provided by
157- :function :`get_package_discovery_extensions`
157+ :func :`get_package_discovery_extensions`
158158 :param identification_extensions: The package identification extensions to
159159 use, if `None` is passed use the extensions provided by
160- :function :`get_package_identification_extensions`
160+ :func :`get_package_identification_extensions`
161161 :param augmentation_extensions: The package augmentation extensions, if
162162 `None` is passed use the extensions provided by
163- :function :`get_package_augmentation_extensions`
163+ :func :`get_package_augmentation_extensions`
164164 :param selection_extensions: The package selection extensions to use, if
165165 `None` is passed use the extensions provided by
166- :function :`get_package_selection_extensions`
166+ :func :`get_package_selection_extensions`
167167 :rtype: list
168168 :raises RuntimeError: if the returned set of packages contains duplicates
169169 package names
@@ -207,25 +207,25 @@ def get_package_descriptors(
207207 Get the package descriptors.
208208
209209 The overview of the process:
210- * Discover the package descriptors using the package discovery and
211- identification extensions
212- * Check is the passed package selection arguments have valid values
213- * Augment the package descriptors
210+ * Discover the package descriptors using the package discovery and
211+ identification extensions
212+ * Check is the passed package selection arguments have valid values
213+ * Augment the package descriptors
214214
215215 :param additional_argument_names: A list of additional arguments to
216216 consider
217217 :param discovery_extensions: The package discovery extensions to use, if
218218 `None` is passed use the extensions provided by
219- :function :`get_package_discovery_extensions`
219+ :func :`get_package_discovery_extensions`
220220 :param identification_extensions: The package identification extensions to
221221 use, if `None` is passed use the extensions provided by
222- :function :`get_package_identification_extensions`
222+ :func :`get_package_identification_extensions`
223223 :param augmentation_extensions: The package augmentation extensions, if
224224 `None` is passed use the extensions provided by
225- :function :`get_package_augmentation_extensions`
225+ :func :`get_package_augmentation_extensions`
226226 :param selection_extensions: The package selection extensions to use, if
227227 `None` is passed use the extensions provided by
228- :function :`get_package_selection_extensions`
228+ :func :`get_package_selection_extensions`
229229 :returns: set of
230230 :py:class:`colcon_core.package_descriptor.PackageDescriptor`
231231 :rtype: set
@@ -276,7 +276,7 @@ def select_package_decorators(
276276 :param list decorators: The package decorators in topological order
277277 :param selection_extensions: The package selection extensions to use, if
278278 `None` is passed use the extensions provided by
279- :function :`get_package_selection_extensions`
279+ :func :`get_package_selection_extensions`
280280 """
281281 # filtering must happen after the topological ordering since otherwise
282282 # packages in the middle of the dependency graph might be missing
0 commit comments