Review Tizen API cs files 66/164066/3
author“Editor <TizenEditor.SEL@lionbridge.com>
Fri, 15 Dec 2017 05:57:00 +0000 (11:27 +0530)
committerWonYoung Choi <wy80.choi@samsung.com>
Wed, 20 Dec 2017 09:54:01 +0000 (09:54 +0000)
PS2: Feedback implementation

Change-Id: I3b04998332b48e3e72c5bd98ba0db8e27e5434a2

src/Tizen/Tizen.Common/Color.cs
src/Tizen/Tizen.Common/DotnetUtil.cs
src/Tizen/Tizen.Internals.Errors/ErrorCode.cs
src/Tizen/Tizen.Internals.Errors/ErrorFacts.cs

index 349d9bd..278651f 100644 (file)
@@ -141,12 +141,12 @@ namespace Tizen.Common
         private int _value;
 
         /// <summary>
-        /// Initiates new Color with r,g,b,a components.
+        /// Initiates the new color with R,G,B,A components.
         /// </summary>
-        /// <param name="r">Red (0 ~ 255)</param>
-        /// <param name="g">Green (0 ~ 255)</param>
-        /// <param name="b">Blue (0 ~ 255)</param>
-        /// <param name="a">Alpha (0 ~ 255)</param>
+        /// <param name="r">Red (0 ~ 255).</param>
+        /// <param name="g">Green (0 ~ 255).</param>
+        /// <param name="b">Blue (0 ~ 255).</param>
+        /// <param name="a">Alpha (0 ~ 255).</param>
         /// <since_tizen> 3 </since_tizen>
         public Color(int r, int g, int b, int a)
         {
@@ -163,11 +163,11 @@ namespace Tizen.Common
         }
 
         /// <summary>
-        /// Initiates new Color with r,g,b components. The alpha value will be 255 as default.
+        /// Initiates the new color with R,G,B components. The Alpha value will be 255 as default.
         /// </summary>
-        /// <param name="r">Red (0 ~ 255)</param>
-        /// <param name="g">Green (0 ~ 255)</param>
-        /// <param name="b">Blue (0 ~ 255)</param>
+        /// <param name="r">Red (0 ~ 255).</param>
+        /// <param name="g">Green (0 ~ 255).</param>
+        /// <param name="b">Blue (0 ~ 255).</param>
         /// <since_tizen> 3 </since_tizen>
         public Color(int r, int g, int b) : this(r, g, b, 255)
         {
@@ -194,7 +194,7 @@ namespace Tizen.Common
         }
 
         /// <summary>
-        /// Gets the blue component of the color.
+        /// Gets the Blue component of the color.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public int B
@@ -203,7 +203,7 @@ namespace Tizen.Common
         }
 
         /// <summary>
-        /// Gets the alpha component of the color.
+        /// Gets the Alpha component of the color.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public int A
@@ -216,11 +216,11 @@ namespace Tizen.Common
         #region Static Methods
 
         /// <summary>
-        /// Returns a boolean indicating whether the two given Colors are equal.
+        /// Returns a boolean indicating whether the two given colors are equal.
         /// </summary>
-        /// <param name="color1">The first Color to compare.</param>
-        /// <param name="color2">The second Color to compare.</param>
-        /// <returns>True if the Colors are equal; False otherwise.</returns>
+        /// <param name="color1">The first color to compare.</param>
+        /// <param name="color2">The second color to compare.</param>
+        /// <returns>True if the colors are equal; False otherwise.</returns>
         /// <since_tizen> 3 </since_tizen>
         public static bool operator ==(Color color1, Color color2)
         {
@@ -228,11 +228,11 @@ namespace Tizen.Common
         }
 
         /// <summary>
-        /// Returns a boolean indicating whether the two given Colors are not equal.
+        /// Returns a boolean indicating whether the two given colors are not equal.
         /// </summary>
-        /// <param name="color1">The first Color to compare.</param>
-        /// <param name="color2">The second Color to compare.</param>
-        /// <returns>True if the Colors are not equal; False if they are equal.</returns>
+        /// <param name="color1">The first color to compare.</param>
+        /// <param name="color2">The second color to compare.</param>
+        /// <returns>True if the colors are not equal; False if they are equal.</returns>
         /// <since_tizen> 3 </since_tizen>
         public static bool operator !=(Color color1, Color color2)
         {
@@ -242,9 +242,9 @@ namespace Tizen.Common
         /// <summary>
         /// Returns a new RGB color instance.
         /// </summary>
-        /// <param name="r">The red component of the color.</param>
-        /// <param name="g">The green component of the color.</param>
-        /// <param name="b">The blue component of the color.</param>
+        /// <param name="r">The Red component of the color.</param>
+        /// <param name="g">The Green component of the color.</param>
+        /// <param name="b">The Blue component of the color.</param>
         /// <returns></returns>
         /// <since_tizen> 3 </since_tizen>
         public static Color FromRgb(int r, int g, int b)
@@ -255,11 +255,11 @@ namespace Tizen.Common
         /// <summary>
         /// Returns a new RGBA color instance.
         /// </summary>
-        /// <param name="r">The red component of the color.</param>
-        /// <param name="g">The green component of the color.</param>
-        /// <param name="b">The blue component of the color.</param>
-        /// <param name="a">The alpha component of the color.</param>
-        /// <returns>the RGBA color instance.</returns>
+        /// <param name="r">The Red component of the color.</param>
+        /// <param name="g">The Green component of the color.</param>
+        /// <param name="b">The Blue component of the color.</param>
+        /// <param name="a">The Alpha component of the color.</param>
+        /// <returns>The RGBA color instance.</returns>
         /// <since_tizen> 3 </since_tizen>
         public static Color FromRgba(int r, int g, int b, int a)
         {
@@ -267,10 +267,10 @@ namespace Tizen.Common
         }
 
         /// <summary>
-        /// Returns a new RGB Color instance with the requested Red, Green, and Blue channels. The Alpha channel is set if hex contains one.
+        /// Returns a new RGB color instance with the requested Red, Green, and Blue channels. The Alpha channel is set if hex contains one.
         /// </summary>
         /// <param name="hex">A string that contains the hexadecimal RGB(A) color representation.</param>
-        /// <returns>the RGBA color instance.</returns>
+        /// <returns>The RGBA color instance.</returns>
         /// <since_tizen> 3 </since_tizen>
         public static Color FromHex(string hex)
         {
@@ -327,7 +327,7 @@ namespace Tizen.Common
         }
 
         /// <summary>
-        /// Returns a string representation in Hex. (ex: \#FFFFFFFF in RGBA order)
+        /// Returns a string representation in Hex (For example: \#FFFFFFFF in RGBA order).
         /// </summary>
         /// <returns>The string representation in Hex.</returns>
         /// <since_tizen> 3 </since_tizen>
@@ -337,10 +337,10 @@ namespace Tizen.Common
         }
 
         /// <summary>
-        /// Returns a boolean indicating whether the given Color is equal to this Color instance.
+        /// Returns a boolean indicating whether the given color is equal to this Color instance.
         /// </summary>
-        /// <param name="other">The Color to compare this instance to.</param>
-        /// <returns>True if the other Color is equal to this instance; False otherwise.</returns>
+        /// <param name="other">The color to compare this instance to.</param>
+        /// <returns>True if the other color is equal to this instance; False otherwise.</returns>
         /// <since_tizen> 3 </since_tizen>
         public bool Equals(Color other)
         {
@@ -348,10 +348,10 @@ namespace Tizen.Common
         }
 
         /// <summary>
-        /// Returns a boolean indicating whether the given Object is equal to this Color instance.
+        /// Returns a boolean indicating whether the given object is equal to this Color instance.
         /// </summary>
-        /// <param name="obj">The Object to compare against.</param>
-        /// <returns>True if the Object is equal to this Color; False otherwise.</returns>
+        /// <param name="obj">The object to compare against.</param>
+        /// <returns>True if the object is equal to this color; False otherwise.</returns>
         /// <since_tizen> 3 </since_tizen>
         public override bool Equals(object obj)
         {
@@ -363,7 +363,7 @@ namespace Tizen.Common
         }
 
         /// <summary>
-        /// Returns a string representation of the Color.
+        /// Returns a string representation of the color.
         /// </summary>
         /// <returns>The string representation.</returns>
         /// <since_tizen> 3 </since_tizen>
index 8fde49a..ae51615 100644 (file)
@@ -27,7 +27,7 @@ namespace Tizen.Common
         /// <summary>
         /// Gets the version of Tizen .NET API.
         /// </summary>
-        /// <returns>The Tizen .NET API version</returns>
+        /// <returns>The Tizen .NET API version.</returns>
         /// <since_tizen> 4 </since_tizen>
         public static int TizenAPIVersion
         {
index c237bf3..68d7af9 100644 (file)
 namespace Tizen.Internals.Errors
 {
     /// <summary>
-    /// Error codes used inside Tizen .NET API implementation
+    /// Error codes used inside Tizen .NET API implementation.
     /// </summary>
     /// <since_tizen> 3 </since_tizen>
     public enum ErrorCode : int
     {
         /// <summary>
-        /// Successful
+        /// Successful.
         /// </summary>
         None = 0, //  0
 
         /// <summary>
-        /// Operation not permitted
+        /// Operation not permitted.
         /// </summary>
         NotPermitted = -1, //  -EPERM
 
         /// <summary>
-        /// No such file or directory
+        /// No such file or directory.
         /// </summary>
         NoSuchFile = -2, //  -ENOENT
 
         /// <summary>
-        /// No such process
+        /// No such process.
         /// </summary>
         NoSuchProcess = -3, //  -ESRCH
 
         /// <summary>
-        /// Interrupted system call
+        /// Interrupted system call.
         /// </summary>
         InterruptedSysCall = -4, //  -EINTR
 
         /// <summary>
-        /// I/O error
+        /// I/O error.
         /// </summary>
         IoError = -5, //  -EIO
 
         /// <summary>
-        /// No such device or address
+        /// No such device or address.
         /// </summary>
         NoSuchDevice = -6, //  -ENXIO
 
         /// <summary>
-        /// Argument list too long
+        /// Argument list too long.
         /// </summary>
         ArgumentListTooLong = -7, //  -E2BIG
 
         /// <summary>
-        /// Exec format error
+        /// Executable format error.
         /// </summary>
         ExecFormatError = -8, //  -ENOEXEC
 
         /// <summary>
-        /// Bad file number
+        /// Bad file number.
         /// </summary>
         BadFileNumber = -9, //  -EBADF
 
         /// <summary>
-        /// Try again
+        /// Try again.
         /// </summary>
         TryAgain = -11, //  -EAGAIN
 
         /// <summary>
-        /// Out of memory
+        /// Out of memory.
         /// </summary>
         OutOfMemory = -12, //  -ENOMEM
 
         /// <summary>
-        /// Permission denied
+        /// Permission denied.
         /// </summary>
         PermissionDenied = -13, //  -EACCES
 
         /// <summary>
-        /// Bad address
+        /// Bad address.
         /// </summary>
         BadAddress = -14, //  -EFAULT
 
         /// <summary>
-        /// Block device required
+        /// Block device required.
         /// </summary>
         BlockDeviceRequired = -15, //  -ENOTBLK
 
         /// <summary>
-        /// Device or resource busy
+        /// Device or resource busy.
         /// </summary>
         ResourceBusy = -16, //  -EBUSY
 
         /// <summary>
-        /// File exists
+        /// File exists.
         /// </summary>
         FileExists = -17, //  -EEXIST
 
         /// <summary>
-        /// Cross-device link
+        /// Cross-device link.
         /// </summary>
         CrossDeviceLink = -18, //  -EXDEV
 
         /// <summary>
-        /// Not a directory
+        /// Not a directory.
         /// </summary>
         NotaDirectory = -20, //  -ENOTDIR
 
         /// <summary>
-        /// Is a directory
+        /// Is a directory.
         /// </summary>
         IsADirectory = -21, //  -EISDIR
 
         /// <summary>
-        /// Invalid function parameter
+        /// Invalid function parameter.
         /// </summary>
         InvalidParameter = -22, //  -EINVAL
 
         /// <summary>
-        /// File table overflow
+        /// File table overflow.
         /// </summary>
         FileTableOverflow = -23, //  -ENFILE
 
         /// <summary>
-        /// Too many open files
+        /// Too many open files.
         /// </summary>
         TooManyOpenFiles = -24, //  -EMFILE
 
         /// <summary>
-        /// Not a terminal
+        /// Not a terminal.
         /// </summary>
         TooNotaTerminal = -25, //  -ENOTTY
 
         /// <summary>
-        /// Too text file busy
+        /// Too text file busy.
         /// </summary>
         TooTextFileBusy = -26, //  -ETXTBSY
 
         /// <summary>
-        /// File too large
+        /// File too large.
         /// </summary>
         FileTooLarge = -27, //  -EFBIG
 
         /// <summary>
-        /// No space left on device
+        /// No space left on device.
         /// </summary>
         FileNoSpaceOnDevice = -28, //  -ENOSPC
 
         /// <summary>
-        /// Illegal seek
+        /// Illegal seek.
         /// </summary>
         IllegalSeek = -29, //  -ESPIPE
 
         /// <summary>
-        /// Read-only file system
+        /// Read-only file system.
         /// </summary>
         ReadOnlyFilesystem = -30, //  -EROFS
 
         /// <summary>
-        /// No data available
+        /// No data available.
         /// </summary>
         NoData = -61, //  -ENODATA
 
         /// <summary>
-        /// Too many links
+        /// Too many links.
         /// </summary>
         TooManyLinks = -31, //  -EMLINK
 
         /// <summary>
-        /// Broken pipe
+        /// Broken pipe.
         /// </summary>
         BrokenPipe = -32, //  -EPIPE
 
         /// <summary>
-        /// Math argument out of domain of func
+        /// Math argument out of domain of the function.
         /// </summary>
         ArgumentOutOfDomain = -33, //  -EDOM
 
         /// <summary>
-        /// Math result not representable
+        /// Math result not representable.
         /// </summary>
         ResultOutOfRange = -34, //  -ERANGE
 
         /// <summary>
-        /// Resource deadlock would occur
+        /// Resource deadlock would occur.
         /// </summary>
         WouldCauseDeadlock = -35, //  -EDEADLK
 
         /// <summary>
-        /// File name too long
+        /// File name too long.
         /// </summary>
         FileNameTooLong = -36, //  -ENAMETOOLONG
 
         /// <summary>
-        /// No record locks available
+        /// No record locks available.
         /// </summary>
         FileNoLocksAvailable = -37, //  -ENOLCK
 
         /// <summary>
-        /// Function not implemented
+        /// Function not implemented.
         /// </summary>
         InvalidOperation = -38, //  -ENOSYS
 
         /// <summary>
-        /// Directory not empty
+        /// Directory not empty.
         /// </summary>
         DirNotEmpty = -39, //  -ENOTEMPTY
 
         /// <summary>
-        /// Too many symbolic links encountered
+        /// Too many symbolic links encountered.
         /// </summary>
         TooManySymbolicLinks = -40, //  -ELOOP
 
         /// <summary>
-        /// Operation would block
+        /// Operation would block.
         /// </summary>
         WouldBlock = -11, //  TryAgain (-EAGAIN)
 
         /// <summary>
-        /// Accessing a corrupted shared library
+        /// Accessing a corrupted shared library.
         /// </summary>
         CorruptedSharedLib = -80, //  -ELIBBAD
 
         /// <summary>
-        /// .lib section in a.out corrupted
+        /// .lib section in a.out corrupted.
         /// </summary>
         LibSectionCorrupted = -81, //  -ELIBSCN
 
         /// <summary>
-        /// Attempting to link in too many shared libraries
+        /// Attempting to link in too many shared libraries.
         /// </summary>
         LinkTooManySharedLib = -82, //  -ELIBMAX
 
         /// <summary>
-        /// Cannot exec a shared library directly
+        /// Cannot execute a shared library directly.
         /// </summary>
         SharedLibExec = -83, //  -ELIBEXEC
 
         /// <summary>
-        /// Illegal byte sequence
+        /// Illegal byte sequence.
         /// </summary>
         IllegalByteSeq = -84, //  -EILSEQ
 
         /// <summary>
-        /// Interrupted system call should be restarted
+        /// Interrupted system call should be restarted.
         /// </summary>
         SystemCallRestart = -85, //  -ERESTART
 
         /// <summary>
-        /// Streams pipe error
+        /// Streams pipe error.
         /// </summary>
         StreamsPipe = -86, //  -ESTRPIPE
 
         /// <summary>
-        /// Too many users
+        /// Too many users.
         /// </summary>
         TooManyUsers = -87, //  -EUSERS
 
         /// <summary>
-        /// Socket operation on non-socket
+        /// Socket operation on non-socket.
         /// </summary>
         NonSocket = -88, //  -ENOTSOCK
 
         /// <summary>
-        /// Destination address required
+        /// Destination address required.
         /// </summary>
         NoDestAddress = -89, //  -EDESTADDRREQ
 
         /// <summary>
-        /// Message too long
+        /// Message too long.
         /// </summary>
         MsgTooLong = -90, //  -EMSGSIZE
 
         /// <summary>
-        /// Protocol wrong type for socket
+        /// Protocol wrong type for socket.
         /// </summary>
         ProtocolWrongType = -91, //  -EPROTOTYPE
 
         /// <summary>
-        /// Protocol not available
+        /// Protocol not available.
         /// </summary>
         ProtocolNotAvaliable = -92, //  -ENOPROTOOPT
 
         /// <summary>
-        /// Protocol not supported
+        /// Protocol not supported.
         /// </summary>
         ProtocolNotSupported = -93, //  -EPROTONOSUPPORT
 
         /// <summary>
-        /// Socket type not supported
+        /// Socket type not supported.
         /// </summary>
         SocketTypeNotSupported = -94, //  -ESOCKTNOSUPPORT
 
         /// <summary>
-        /// Operation not supported on transport endpoint
+        /// Operation not supported on the transport endpoint.
         /// </summary>
         EndpointOperatinNotSupported = -95, //  -EOPNOTSUPP
 
         /// <summary>
-        /// Protocol family not supported
+        /// Protocol family not supported.
         /// </summary>
         ProtocolFamilyNotSupported = -96, //  -EPFNOSUPPORT
 
         /// <summary>
-        /// Address family not supported by protocol
+        /// Address family not supported by protocol.
         /// </summary>
         AddressFamilyNotSupported = -97, //  -EAFNOSUPPORT
 
         /// <summary>
-        /// Address already in use
+        /// Address already in use.
         /// </summary>
         AddresInUse = -98, //  -EADDRINUSE
 
         /// <summary>
-        /// Cannot assign requested address
+        /// Cannot assign requested address.
         /// </summary>
         CannotAssignAddress = -99, //  -EADDRNOTAVAIL
 
         /// <summary>
-        /// Network is down
+        /// Network down.
         /// </summary>
         Networkdown = -100, //  -ENETDOWN
 
         /// <summary>
-        /// Network is unreachable
+        /// Network unreachable.
         /// </summary>
         NetworkUnreachable = -101, //  -ENETUNREACH
 
         /// <summary>
-        /// Network dropped connection because of reset
+        /// Network dropped the connection because of the reset.
         /// </summary>
         NetworkReset = -102, //  -ENETRESET
 
         /// <summary>
-        /// Software caused connection abort
+        /// Software caused the connection to abort.
         /// </summary>
         ConnectionAborted = -103, //  -ECONNABORTED
 
         /// <summary>
-        /// Connection reset by peer
+        /// Connection reset by the peer.
         /// </summary>
         ConnectionResetByPeer = -104, //  -ECONNRESET
 
         /// <summary>
-        /// No buffer space available
+        /// No buffer space available.
         /// </summary>
         BufferSpace = -105, //  -ENOBUFS
 
         /// <summary>
-        /// Transport endpoint is already connected
+        /// Transport endpoint already connected.
         /// </summary>
         EndpointConnected = -106, //  -EISCONN
 
         /// <summary>
-        /// Transport endpoint is not connected
+        /// Transport endpoint not connected.
         /// </summary>
         EndpointNotConnected = -107, //  -ENOTCONN
 
         /// <summary>
-        /// Cannot send after transport endpoint shutdown
+        /// Cannot send after the transport endpoint shutdown.
         /// </summary>
         EndpointShutdown = -108, //  -ESHUTDOWN
 
         /// <summary>
-        /// Too many references: cannot splice
+        /// Too many references: cannot splice.
         /// </summary>
         TooManyReferences = -109, //  -ETOOMANYREFS
 
         /// <summary>
-        /// Connection timed out
+        /// Connection timed out.
         /// </summary>
         ConnectionTimeout = -110, //  -ETIMEDOUT
 
         /// <summary>
-        /// Connection refused
+        /// Connection refused.
         /// </summary>
         ConnectionRefused = -111, //  -ECONNREFUSED
 
         /// <summary>
-        /// Host is down
+        /// Host down.
         /// </summary>
         Hostdown = -112, //  -EHOSTDOWN
 
         /// <summary>
-        /// No route to host
+        /// No route to host.
         /// </summary>
         NoRouteToHost = -113, //  -EHOSTUNREACH
 
         /// <summary>
-        /// Operation already in progress
+        /// Operation already in progress.
         /// </summary>
         AlreadyInProgress = -114, //  -EALREADY
 
         /// <summary>
-        /// Operation now in progress
+        /// Operation now in progress.
         /// </summary>
         NowInProgress = -115, //  -EINPROGRESS
 
         /// <summary>
-        /// Stale NFS file handle
+        /// Stale NFS file handle.
         /// </summary>
         StaleNfsFileHandle = -116, //  -ESTALE
 
         /// <summary>
-        /// Structure needs cleaning
+        /// Structure needs cleaning.
         /// </summary>
         StructureUnclean = -117, //  -EUCLEAN
 
         /// <summary>
-        /// Not a XENIX named type file
+        /// Not a XENIX named type file.
         /// </summary>
         NotXenixNamedTypeFile = -118, //  -ENOTNAM
 
         /// <summary>
-        /// No XENIX semaphores available
+        /// No XENIX semaphores available.
         /// </summary>
         NoXenixSemaphoresAvailable = -119, //  -ENAVAIL
 
         /// <summary>
-        /// Is a named type file
+        /// Is a named type file.
         /// </summary>
         IsNamedTypeFile = -120, //  -EISNAM
 
         /// <summary>
-        /// Remote I/O error
+        /// Remote I/O error.
         /// </summary>
         RemoteIo = -121, //  -EREMOTEIO
 
         /// <summary>
-        /// Quota exceeded
+        /// Quota exceeded.
         /// </summary>
         QuotaExceeded = -122, //  -EDQUOT
 
         /// <summary>
-        /// No medium found
+        /// No medium found.
         /// </summary>
         NoMedium = -123, //  -ENOMEDIUM
 
         /// <summary>
-        /// Wrong medium type
+        /// Wrong medium type.
         /// </summary>
         WrongMediumType = -124, //  -EMEDIUMTYPE
 
         /// <summary>
-        /// Operation Canceled
+        /// Operation Canceled.
         /// </summary>
         Canceled = -125, //  -ECANCELED
 
         /// <summary>
-        /// Required key not available
+        /// Required key not available.
         /// </summary>
         KeyNotAvailable = -126, //  -ENOKEY
 
         /// <summary>
-        /// Key has expired
+        /// Key has expired.
         /// </summary>
         KeyExpired = -127, //  -EKEYEXPIRED
 
         /// <summary>
-        /// Key has been revoked
+        /// Key has been revoked.
         /// </summary>
         KeyRevoked = -128, //  -EKEYREVOKED
 
         /// <summary>
-        /// Key was rejected by service
+        /// Key was rejected by the service.
         /// </summary>
         KeyRejected = -129, //  -EKEYREJECTED
 
 
         /// <summary>
-        /// Owner died (for robust mutexes)
+        /// Owner died (for robust mutexes).
         /// </summary>
         OwnerDead = -130, //  -EOWNERDEAD
 
         /// <summary>
-        /// Unknown error
+        /// Unknown error.
         /// </summary>
         Unknown = -1073741824, //  TIZEN_ERROR_MIN_PLATFORM_ERROR
 
         /// <summary>
-        /// Time out
+        /// Timed out.
         /// </summary>
         TimedOut,
 
         /// <summary>
-        /// Not Supported
+        /// Not supported.
         /// </summary>
         NotSupported,
 
         /// <summary>
-        /// Not Consented
+        /// Not consented.
         /// </summary>
         UserNotConsented,
 
         /// <summary>
-        /// The end of collection
+        /// The end of collection.
         /// </summary>
         EndofCollection
     }
index e4d5e60..bee6269 100644 (file)
@@ -20,7 +20,7 @@ using System.Runtime.InteropServices;
 namespace Tizen.Internals.Errors
 {
     /// <summary>
-    /// Provides functions that return additional information about the <see cref="ErrorCode"/>
+    /// Provides functions that return the additional information about <see cref="ErrorCode"/>.
     /// </summary>
     /// <since_tizen> 3 </since_tizen>
     public static class ErrorFacts
@@ -28,7 +28,7 @@ namespace Tizen.Internals.Errors
         /// <summary>
         /// Gets the last error code in the thread.
         /// </summary>
-        /// <returns>One of <see cref="ErrorCode"/></returns>
+        /// <returns>One of <see cref="ErrorCode"/>.</returns>
         /// <since_tizen> 3 </since_tizen>
         public static int GetLastResult()
         {
@@ -36,9 +36,9 @@ namespace Tizen.Internals.Errors
         }
 
         /// <summary>
-        /// Gets the message for given the error code.
+        /// Gets the message for the given error code.
         /// </summary>
-        /// <param name="errorCode">One of <see cref="ErrorCode"/></param>
+        /// <param name="errorCode">One of <see cref="ErrorCode"/>.</param>
         /// <returns></returns>
         /// <since_tizen> 3 </since_tizen>
         public static string GetErrorMessage(int errorCode)