Skip to content

Commit 9b222f1

Browse files
committed
Fix XML documentation to use <see langword> for boolean values
1 parent ca25581 commit 9b222f1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

UncomplicatedCustomEscapeZones/API/Features/CustomEscapeZone.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class CustomEscapeZone : ICustomEscapeZone
7171
/// </summary>
7272
/// <param name="id"></param>
7373
/// <param name="customEscapeZone"></param>
74-
/// <returns><see cref="true" /> if the operation was successfull.</returns>
74+
/// <returns><see langword="true" /> if the operation was successful.</returns>
7575
public static bool TryGet(int id, out ICustomEscapeZone customEscapeZone)
7676
{
7777
if (CustomEscapeZones.TryGetValue(id, out ICustomEscapeZone escapeZone))
@@ -88,7 +88,7 @@ public static bool TryGet(int id, out ICustomEscapeZone customEscapeZone)
8888
/// Get a registered <see cref="ICustomEscapeZone" /> by it's Id
8989
/// </summary>
9090
/// <param name="id"></param>
91-
/// <returns>The <see cref="ICustomEscapeZone" /> with the given Id or <see cref="null" /> if not found.</returns>
91+
/// <returns>The <see cref="ICustomEscapeZone" /> with the given Id or <see langword="null" /> if not found.</returns>
9292
public static ICustomEscapeZone Get(int id)
9393
{
9494
return TryGet(id, out ICustomEscapeZone customEscapeZone) ? customEscapeZone : null;

UncomplicatedCustomEscapeZones/UncomplicatedCustomEscapeZones.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@
8181
<Compile Include="API\Features\SummonedEscapeZone.cs"/>
8282
<Compile Include="API\Struct\Triplet.cs"/>
8383
<Compile Include="Commands\CommandParent.cs"/>
84-
<Compile Include="Commands\GetData.cs" />
85-
<Compile Include="Commands\Outline.cs" />
84+
<Compile Include="Commands\GetData.cs"/>
85+
<Compile Include="Commands\Outline.cs"/>
8686
<Compile Include="Commands\Reload.cs"/>
8787
<Compile Include="Config.cs"/>
8888
<Compile Include="Events\EventHandler.cs"/>

0 commit comments

Comments
 (0)