fxa / uritemplate-js

An javascript implementation of RFC6570 Uri Templates
MIT License
97 stars 20 forks source link

Correct typo in README #7

Closed RubenVerborgh closed 11 years ago

RubenVerborgh commented 11 years ago
template = UriTemplate.parse('{?query*}';

should become

template = UriTemplate.parse('{?query*}');

(closing parenthesis)

fxa commented 11 years ago

Thank you!