ceylon / ceylon-spec

DEPRECATED
Apache License 2.0
108 stars 34 forks source link

typo in spec example for unicode escaping #1429

Closed jvasileff closed 8 years ago

jvasileff commented 8 years ago

The spec says:

The following are legal strings: ... "\{00E5}ngstr\{00F6}ms"

But the type checker says:

Illegal unicode escape sequence: 00F6 is not a Unicode character Illegal unicode escape sequence: 00E5 is not a Unicode character

jvasileff commented 8 years ago

I guess it's supposed to be this?

"\{#00E5}ngstr\{#00F6}ms"
gavinking commented 8 years ago

There are no unicode characters named 00E5 and 00F6.

jvasileff commented 8 years ago

Ok, I fixed the title...

gavinking commented 8 years ago

Ah OK, sure.