Skip to content

Commit

Permalink
Update DisposableExtensions.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
kochounoyume authored Jan 7, 2025
1 parent 385481b commit dc68a2a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Packages/MinimalUtility/Runtime/DisposableExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ public static class DisposableExtensions
/// <summary>
/// <see cref="IDisposable"/>を指定した<see cref="IDisposable"/>コンテナに追加します.
/// </summary>
///<example>
///<code>
/// <example>
/// <code>
/// <![CDATA[
/// using System;
/// using MinimalUtility;
Expand Down Expand Up @@ -44,8 +44,8 @@ public static class DisposableExtensions
/// }
/// }
/// ]]>
///</code>
///</example>
/// </code>
/// </example>
/// <param name="disposable">任意の<see cref="IDisposable"/>実装クラスの参照.</param>
/// <param name="disposableContainer">追加先の<see cref="IDisposable"/>コンテナ.</param>
/// <typeparam name="T">追加した<see cref="IDisposable"/>.</typeparam>
Expand All @@ -58,8 +58,8 @@ public static void AddTo<T>(this T disposable, ref IDisposable disposableContain
/// <summary>
/// <see cref="IDisposable"/>を指定した<see cref="IDisposable"/>コンテナに追加します.
/// </summary>
///<example>
///<code>
/// <example>
/// <code>
/// <![CDATA[
/// using System.Threading;
/// using MinimalUtility;
Expand Down Expand Up @@ -91,8 +91,8 @@ public static void AddTo<T>(this T disposable, ref IDisposable disposableContain
/// }
/// }
/// ]]>
///</code>
///</example>
/// </code>
/// </example>
/// <param name="disposable">任意の<see cref="IDisposable"/>実装構造体.</param>
/// <param name="disposableContainer">追加先の<see cref="IDisposable"/>コンテナ.</param>
/// <typeparam name="T">追加した<see cref="IDisposable"/>.</typeparam>
Expand Down

0 comments on commit dc68a2a

Please sign in to comment.