I created an extension and added a description using ///
extension Array where Element: UIView {
/// Remove each view from its superview.
func removeViewsFromSuperview(){
self.forEach{ $0.removeFromSuperview() }
}
}
However, when I use it the description does not show up:
But, descriptions for library functions show up:
So if anyone could tell me what I'm doing wrong in terms of the markup that would be great!