Inspec documentation format

Hi Chefs

We are running inspec via test kitchen and have added format: documentation to our .kitchen.yml

verifier:
  name: inspec
  format: documentation

Its working really well and we now have useful documentation from our tests but we have one small issue in that for a power shell script such as

check_event_log_script = '(get-eventlog -log application -source US_src).count -ge 0'
describe script(check_event_log_script) do
  its('stdout') { should match 'True' }
end

The output documentation is

Script
  stdout
    should match "True"

Any idea how we can add descriptive text to the test?