diff --git a/index.d.ts b/index.d.ts index 42948b7..f821193 100644 --- a/index.d.ts +++ b/index.d.ts @@ -61,10 +61,10 @@ export type Options = { @example ``` - normalizeUrl('user:password@sindresorhus.com'); + normalizeUrl('https://user:password@sindresorhus.com'); //=> 'https://sindresorhus.com' - normalizeUrl('user:password@sindresorhus.com', {stripAuthentication: false}); + normalizeUrl('https://user:password@sindresorhus.com', {stripAuthentication: false}); //=> 'https://user:password@sindresorhus.com' ``` */