A few xmldoc additions/fixes.

This commit is contained in:
smoogipooo
2017-04-18 09:13:36 +09:00
parent 786446354e
commit c61e3265bb
21 changed files with 75 additions and 24 deletions

View File

@ -30,9 +30,9 @@ namespace osu.Game.Beatmaps
public static class BeatmapConverterExtensions
{
/// <summary>
/// Checks if a Beatmap can be converted using a Beatmap Converter.
/// Checks if a Beatmap can be converted using this Beatmap Converter.
/// </summary>
/// <param name="converter">The Converter to use.</param>
/// <param name="converter">The Beatmap Converter.</param>
/// <param name="beatmap">The Beatmap to check.</param>
/// <returns>Whether the Beatmap can be converted using <paramref name="converter"/>.</returns>
public static bool CanConvert<TObject>(this IBeatmapConverter<TObject> converter, Beatmap beatmap) where TObject : HitObject