瀏覽代碼

chore: remove repetitive words

Signed-off-by: standstaff <zhengxingru@yeah.net>
standstaff 1 年之前
父節點
當前提交
64b7f0f721

+ 1 - 1
MediaBrowser.Controller/LiveTv/ChannelInfo.cs

@@ -54,7 +54,7 @@ namespace MediaBrowser.Controller.LiveTv
         public string ChannelGroup { get; set; }
 
         /// <summary>
-        /// Gets or sets the the image path if it can be accessed directly from the file system.
+        /// Gets or sets the image path if it can be accessed directly from the file system.
         /// </summary>
         /// <value>The image path.</value>
         public string ImagePath { get; set; }

+ 2 - 2
MediaBrowser.Model/Dlna/StreamBuilder.cs

@@ -345,7 +345,7 @@ namespace MediaBrowser.Model.Dlna
         /// <param name="profile">The <see cref="DeviceProfile"/>.</param>
         /// <param name="type">The <see cref="DlnaProfileType"/>.</param>
         /// <param name="playProfile">The <see cref="DirectPlayProfile"/> object to get the video stream from.</param>
-        /// <returns>The the normalized input container.</returns>
+        /// <returns>The normalized input container.</returns>
         public static string? NormalizeMediaSourceFormatIntoSingleContainer(string inputContainer, DeviceProfile? profile, DlnaProfileType type, DirectPlayProfile? playProfile = null)
         {
             if (string.IsNullOrEmpty(inputContainer))
@@ -1350,7 +1350,7 @@ namespace MediaBrowser.Model.Dlna
         /// <param name="transcoderSupport">The <see cref="ITranscoderSupport"/>.</param>
         /// <param name="outputContainer">The output container.</param>
         /// <param name="transcodingSubProtocol">The subtitle transoding protocol.</param>
-        /// <returns>The the normalized input container.</returns>
+        /// <returns>The normalized input container.</returns>
         public static SubtitleProfile GetSubtitleProfile(
             MediaSourceInfo mediaSource,
             MediaStream subtitleStream,

+ 1 - 1
MediaBrowser.Model/Tasks/ITaskTrigger.cs

@@ -24,7 +24,7 @@ namespace MediaBrowser.Model.Tasks
         /// <param name="lastResult">Result of the last run triggered task.</param>
         /// <param name="logger">The <see cref="ILogger"/>.</param>
         /// <param name="taskName">The name of the task.</param>
-        /// <param name="isApplicationStartup">Whether or not this is is fired during startup.</param>
+        /// <param name="isApplicationStartup">Whether or not this is fired during startup.</param>
         void Start(TaskResult? lastResult, ILogger logger, string taskName, bool isApplicationStartup);
 
         /// <summary>