Explore with Flux - typo in sample Query 'Schema Exploration - fields'

Hi guys,

The following sample query has a typo:

from(bucket: v.bucket)
  |> range(start: v.timeRangeStart, stop:timeRangeStop)
  |> keys()
  |> keep(columns: ["_value"])
  |> group()
  |> distinct()

As you see, “stop:timeRangeStop” should be “stop:v.timeRangeStop”.

And of course, it misses a time column which causes an error - see other post: Explore with Flux - time column missing.