amrisi / amr-guidelines

239 stars 86 forks source link

Fix #172: put time entity in quotes #273

Closed goodmami closed 3 months ago

goodmami commented 3 months ago

In #172, it was pointed out that the following AMR from the guidelines cannot be parsed with Smatch:

(d / date-entity
   :month 2
   :day 29
   :weekday (w / wednesday)
   :time 16:30
   :timezone (z / PST))

The time 16:30 should be in quotes, as pointed out by @nschneid. This PR makes that change.

nschneid commented 3 months ago

Thanks!