From 67e268ff20c83d895f265b5ce0bfbdd968f3da47 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 14 Aug 2018 15:16:13 -0700 Subject: [PATCH] doc: use italics for words-as-words PR-URL: https://github.com/nodejs/node/pull/22324 Reviewed-By: Vse Mozhet Byt Reviewed-By: Bryan English --- doc/api/url.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/url.md b/doc/api/url.md index 7a101f6706f36f..0fa8d475da3140 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -919,7 +919,7 @@ The legacy `urlObject` (`require('url').Url`) is created and returned by the #### urlObject.auth The `auth` property is the username and password portion of the URL, also -referred to as "userinfo". This string subset follows the `protocol` and +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 format of the string is `{username}[:{password}]`, with the `[:{password}]` portion being optional.