I have nothing useful to write about this function other than specifying what it outputs. If Yard doesn't find a description, it uses the contents of @return
instead. Is there any way to prevent that? I want to avoid silly duplication like you see in the example below.
##
# @return [Array<Hash>]
#
# an array of hashes. Example output:
#
# [
# {:name=>"FORNEBU", :municipality=>"BÆRUM", :county=>"AKERSHUS"},
# {:name=>"FORSAND", :municipality=>"FORSAND", :county=>"ROGALAND"}
# ]
#