@@ -1841,7 +1841,7 @@ public class DocumentationContext {
1841
1841
}
1842
1842
}
1843
1843
1844
- /// Returns a list of all the image assets that registered for a given `bundleIdentifier `.
1844
+ /// Returns a list of all the image assets that registered for a given `bundleID `.
1845
1845
///
1846
1846
/// - Parameter bundleID: The identifier of the bundle to return image assets for.
1847
1847
/// - Returns: A list of all the image assets for the given bundle.
@@ -1854,7 +1854,7 @@ public class DocumentationContext {
1854
1854
registeredImageAssets ( for: DocumentationBundle . Identifier ( rawValue: bundleIdentifier) )
1855
1855
}
1856
1856
1857
- /// Returns a list of all the video assets that registered for a given `bundleIdentifier `.
1857
+ /// Returns a list of all the video assets that registered for a given `bundleID `.
1858
1858
///
1859
1859
/// - Parameter bundleID: The identifier of the bundle to return video assets for.
1860
1860
/// - Returns: A list of all the video assets for the given bundle.
@@ -1867,7 +1867,7 @@ public class DocumentationContext {
1867
1867
registeredVideoAssets ( for: DocumentationBundle . Identifier ( rawValue: bundleIdentifier) )
1868
1868
}
1869
1869
1870
- /// Returns a list of all the download assets that registered for a given `bundleIdentifier `.
1870
+ /// Returns a list of all the download assets that registered for a given `bundleID `.
1871
1871
///
1872
1872
/// - Parameter bundleID: The identifier of the bundle to return download assets for.
1873
1873
/// - Returns: A list of all the download assets for the given bundle.
@@ -1880,12 +1880,12 @@ public class DocumentationContext {
1880
1880
registeredDownloadsAssets ( for: DocumentationBundle . Identifier ( rawValue: bundleIdentifier) )
1881
1881
}
1882
1882
1883
- /// Returns a list of all the custom scripts that registered for a given `bundleIdentifier `.
1883
+ /// Returns a list of all the custom scripts that registered for a given `bundleID `.
1884
1884
///
1885
- /// - Parameter bundleIdentifier : The identifier of the bundle to return download assets for.
1885
+ /// - Parameter bundleID : The identifier of the bundle to return custom scripts for.
1886
1886
/// - Returns: A list of all the custom scripts for the given bundle.
1887
- public func registeredCustomScripts( forBundleID bundleIdentifier : BundleIdentifier ) -> [ DataAsset ] {
1888
- return registeredAssets ( withExtensions: DocumentationContext . supportedScriptExtensions, forBundleID: bundleIdentifier )
1887
+ public func registeredCustomScripts( for bundleID : DocumentationBundle . Identifier ) -> [ DataAsset ] {
1888
+ return registeredAssets ( withExtensions: DocumentationContext . supportedScriptExtensions, forBundleID: bundleID )
1889
1889
}
1890
1890
1891
1891
typealias Articles = [ DocumentationContext . SemanticResult < Article > ]
0 commit comments