From 508d6046e45eac90b8fee578c9079b860a8bf6cd Mon Sep 17 00:00:00 2001 From: Tino Hager Date: Wed, 15 May 2024 22:37:50 +0200 Subject: [PATCH] optimize interface summary --- src/Nager.PublicSuffix/IDomainParser.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Nager.PublicSuffix/IDomainParser.cs b/src/Nager.PublicSuffix/IDomainParser.cs index 55e8141..bcb16be 100644 --- a/src/Nager.PublicSuffix/IDomainParser.cs +++ b/src/Nager.PublicSuffix/IDomainParser.cs @@ -3,22 +3,22 @@ namespace Nager.PublicSuffix { /// - /// Interface Domain Parser + /// Domain Parser Interface /// public interface IDomainParser { /// - /// Parse the DomainInfo from . + /// Parses a fully qualified domain name (FQDN) and retrieves information about the domain. /// /// The fully qualified domain name (FQDN) to parse - /// DomainInfo object + /// A DomainInfo object containing details such as TopLevelDomain, Subdomain, RegistrableDomain, or null if the TopLevelDomain is invalid. DomainInfo? Parse(string fullyQualifiedDomainName); /// - /// Parse the DomainInfo from . + /// Parses a fully qualified domain name (FQDN) and retrieves information about the domain. /// /// The fully qualified domain name (FQDN) to parse - /// DomainInfo object + /// A DomainInfo object containing details such as TopLevelDomain, Subdomain, RegistrableDomain, or null if the TopLevelDomain is invalid. DomainInfo? Parse(Uri fullyQualifiedDomainName); ///