From c41e5d498b2f8aff39a9cac6e2b109edb3aae876 Mon Sep 17 00:00:00 2001 From: Dylan Kirby Date: Fri, 2 Oct 2015 13:27:56 -0400 Subject: [PATCH] :memo: Fix typo in docs preceeding -> preceding --- docs/Terms.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Terms.md b/docs/Terms.md index 625019cc4..17235b7e0 100644 --- a/docs/Terms.md +++ b/docs/Terms.md @@ -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