From ec6a8611b5188a03a6ff71438edcb1350d8b598a Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 14 Aug 2018 15:20:40 -0700 Subject: [PATCH] doc: simplify format description of urlObject.auth The "at sign" is properly the "commercial at" but let's just avoid the whole naming issue by putting the symbol right in the sentence. PR-URL: https://github.com/nodejs/node/pull/22324 Reviewed-By: Vse Mozhet Byt Reviewed-By: Bryan English --- doc/api/url.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/url.md b/doc/api/url.md index 4f4baedfe716dc..3b2c7cd8ba059a 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -920,9 +920,9 @@ The legacy `urlObject` (`require('url').Url`) is created and returned by the The `auth` property is the username and password portion of the URL, also referred to as _userinfo_. This string subset follows the `protocol` and -double slashes (if present) and precedes the `host` component, delimited by an -ASCII "at sign" (`@`). The string is either the username, or it is the username -and password separated by `:`. +double slashes (if present) and precedes the `host` component, delimited by `@`. +The string is either the username, or it is the username and password separated +by `:`. For example: `'user:pass'`.