Hello! Consider the following example: ```fluent shared-photos = {$photoCount -> *[one] . } " ``` https://projectfluent.org/play/?id=fcbc0ff1daf506a0e6943ab9658b1340 This causes a syntax error. However, if you would replace dot character with any other one, it's working OK. These also causes errors: ```fluent shared-photos = " {$photoCount -> *[one] A . } " ``` ```fluent shared-photos = " {$photoCount -> *[one] .A } " ``` It looks like first character of the line can't be a dot. Why is that?