Skip to content

Commit

Permalink
📝 Fix typo in docs
Browse files Browse the repository at this point in the history
preceeding -> preceding
  • Loading branch information
djkirby committed Oct 2, 2015
1 parent 51b199c commit c41e5d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Terms.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ A *path* represents a URL path.

type Pathname = string;

A *pathname* is the portion of a URL that describes a hierarchical path, including the preceeding `/`. For example, in `http://example.com/the/path?the=query`, `/the/path` is the pathname. It is synonymous with `window.location.pathname` in web browsers.
A *pathname* is the portion of a URL that describes a hierarchical path, including the preceding `/`. For example, in `http://example.com/the/path?the=query`, `/the/path` is the pathname. It is synonymous with `window.location.pathname` in web browsers.

### QueryString

type QueryString = string;

A *query string* is the portion of the URL that follows the [pathname](#pathname), including any preceeding `?`. For example, in `http://example.com/the/path?the=query`, `?the=query` is the query string. It is synonymous with `window.location.search` in web browsers.
A *query string* is the portion of the URL that follows the [pathname](#pathname), including any preceding `?`. For example, in `http://example.com/the/path?the=query`, `?the=query` is the query string. It is synonymous with `window.location.search` in web browsers.

### Query

Expand Down

0 comments on commit c41e5d4

Please sign in to comment.