From fec3c1fd918b76cf0f21f95c9168c539d2902e71 Mon Sep 17 00:00:00 2001 From: Editor Lionbridge Date: Fri, 11 Aug 2017 19:39:58 +0530 Subject: [PATCH] Review mime-type API cs files Change-Id: I18119c341de964518d68daff90e2f346132138b9 --- .../Tizen.Content.MimeType/MimeUtil.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Tizen.Content.MimeType/Tizen.Content.MimeType/MimeUtil.cs b/src/Tizen.Content.MimeType/Tizen.Content.MimeType/MimeUtil.cs index d9be14a..98aab3e 100755 --- a/src/Tizen.Content.MimeType/Tizen.Content.MimeType/MimeUtil.cs +++ b/src/Tizen.Content.MimeType/Tizen.Content.MimeType/MimeUtil.cs @@ -23,16 +23,16 @@ using System.Runtime.InteropServices; namespace Tizen.Content.MimeType { /// - /// The MimeUtil API provides functions to map MIME types to file extensions and vice versa. + /// The MimeUtil API provides functions to map the MIME types to file extensions and vice versa. /// - /// Conversions are provided from file extensions to MIME types and from MIME types to file extensions. + /// Conversions are provided from the file extensions to MIME types and from the MIME types to file extensions. public static class MimeUtil { /// /// Gets the MIME type for the given file extension. - /// The MIME type is 'application/octet-stream' if the given file extension is not associated with specific file formats + /// The MIME type is 'application/octet-stream' if the given file extension is not associated with specific file formats. /// - /// The file Extension + /// The file extension. /// /// /// string mimeType = MimeUtil.GetMimeType("png"); @@ -50,11 +50,11 @@ namespace Tizen.Content.MimeType } /// - /// Gets file extensions for the given MIME type. + /// Gets the file extensions for the given MIME type. /// - /// If Successfull, return's the list of file extension strings for the given MIME type. - /// The array of file extension are without the leading dot ('.') - /// The mime type + /// If successful, returns the list of file extension strings for the given MIME type. + /// The array of file extension is without the leading dot ('.'). + /// The MIME type. /// /// /// IEnumerable extColl = MimeUtil.GetFileExtension("video/mpeg"); -- 2.7.4