diff --git a/FiftyOne.IpIntelligence.Shared/Data/IIpIntelligenceData.cs b/FiftyOne.IpIntelligence.Shared/Data/IIpIntelligenceData.cs index 2ebc324..6e7c1a0 100644 --- a/FiftyOne.IpIntelligence.Shared/Data/IIpIntelligenceData.cs +++ b/FiftyOne.IpIntelligence.Shared/Data/IIpIntelligenceData.cs @@ -63,7 +63,7 @@ public interface IIpIntelligenceData : IAspectData /// IAspectPropertyValue ConnectionType { get; } /// - /// The 3-character ISO 3166-1 continent code for the supplied location. + /// The 2-character ISO 3166-1 continent code for the supplied location. /// IAspectPropertyValue ContinentCode2 { get; } /// @@ -227,7 +227,7 @@ public interface IIpIntelligenceData : IAspectData /// IAspectPropertyValue TimeZoneIana { get; } /// - /// The offset from UTC in minutes in the supplied location, at the time that the value is produced. + /// The offset from UTC in minutes in the supplied location, at the time that the value is produced. A value of -1 indicates unknown. /// IAspectPropertyValue TimeZoneOffset { get; } /// diff --git a/FiftyOne.IpIntelligence.Shared/IpIntelligenceDataBase.cs b/FiftyOne.IpIntelligence.Shared/IpIntelligenceDataBase.cs index 2a205c2..2a5d255 100644 --- a/FiftyOne.IpIntelligence.Shared/IpIntelligenceDataBase.cs +++ b/FiftyOne.IpIntelligence.Shared/IpIntelligenceDataBase.cs @@ -148,7 +148,7 @@ protected IpIntelligenceData( /// public IAspectPropertyValue ConnectionType { get { return GetAs>("ConnectionType"); } } /// - /// The 3-character ISO 3166-1 continent code for the supplied location. + /// The 2-character ISO 3166-1 continent code for the supplied location. /// public IAspectPropertyValue ContinentCode2 { get { return GetAs>("ContinentCode2"); } } /// @@ -312,7 +312,7 @@ protected IpIntelligenceData( /// public IAspectPropertyValue TimeZoneIana { get { return GetAs>("TimeZoneIana"); } } /// - /// The offset from UTC in minutes in the supplied location, at the time that the value is produced. + /// The offset from UTC in minutes in the supplied location, at the time that the value is produced. A value of -1 indicates unknown. /// public IAspectPropertyValue TimeZoneOffset { get { return GetAs>("TimeZoneOffset"); } } ///