Tweaks for doc comments

This commit is contained in:
Wojciech Figat
2021-12-07 13:24:05 +01:00
parent c0bcb54044
commit ea71e8cbe6
8 changed files with 36 additions and 78 deletions

View File

@@ -140,9 +140,7 @@ namespace FlaxEngine
/// Determines whether the specified path is relative or is absolute.
/// </summary>
/// <param name="path">The input path.</param>
/// <returns>
/// <c>true</c> if the specified path is relative; otherwise, <c>false</c> if is relative.
/// </returns>
/// <returns><c>true</c> if the specified path is relative; otherwise, <c>false</c> if is relative.</returns>
public static bool IsRelative(string path)
{
bool isRooted = (path.Length >= 2 && char.IsLetterOrDigit(path[0]) && path[1] == ':') ||