Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tiny little mistake in the documentation #65

Closed
ghost opened this issue Jan 28, 2013 · 1 comment
Closed

Tiny little mistake in the documentation #65

ghost opened this issue Jan 28, 2013 · 1 comment

Comments

@ghost
Copy link

ghost commented Jan 28, 2013

There seems to be a little mistake in the documentation for toString() on the website.

The example looks as follows

var uri = URI("http://example.com");
var s = uri.toString();
typeof s === "string";
s === "http://example.com";

But it seems like toString() actually adds a trailing slash so it should look like

var uri = URI("http://example.com");
var s = uri.toString();
typeof s === "string";
s === "http://example.com/";
@rodneyrehm
Copy link
Member

you are right about that. good catch!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant