Fix "see" references in Aaruformat

This commit is contained in:
Matt Nadareski
2025-01-05 21:15:34 -05:00
parent fe78a5532f
commit 792ed1e924
5 changed files with 5 additions and 5 deletions

View File

@@ -8,8 +8,8 @@ namespace SabreTools.FileTypes.Aaru
{
/// <summary>
/// AaruFormat code is based on the Aaru project
/// See https://github.com/aaru-dps/Aaru/tree/master/Aaru.Images/AaruFormat
/// </summary>
/// <see href="https://github.com/aaru-dps/Aaru/tree/master/Aaru.Images/AaruFormat"/>
public class AaruFormat : BaseFile
{
#region Fields

View File

@@ -6,7 +6,7 @@ namespace SabreTools.FileTypes.Aaru
/// <summary>
/// Checksum entry, followed by checksum data itself
/// </summary>
/// <see cref="https://github.com/aaru-dps/Aaru/blob/master/Aaru.Images/AaruFormat/Structs.cs" />
/// <see href="https://github.com/aaru-dps/Aaru/blob/master/Aaru.Images/AaruFormat/Structs.cs" />
public class ChecksumEntry
{
/// <summary>Checksum algorithm</summary>

View File

@@ -7,7 +7,7 @@ namespace SabreTools.FileTypes.Aaru
/// Checksum block, contains a checksum of all user data sectors
/// (except for optical discs that is 2352 bytes raw sector if available
/// </summary>
/// <see cref="https://github.com/aaru-dps/Aaru/blob/master/Aaru.Images/AaruFormat/Structs.cs" />
/// <see href="https://github.com/aaru-dps/Aaru/blob/master/Aaru.Images/AaruFormat/Structs.cs" />
public class ChecksumHeader
{
/// <summary>Identifier, <see cref="BlockType.ChecksumBlock" /></summary>

View File

@@ -6,7 +6,7 @@ namespace SabreTools.FileTypes.Aaru
/// <summary>
/// Index entry
/// </summary>
/// <see cref="https://github.com/aaru-dps/Aaru/blob/master/Aaru.Images/AaruFormat/Structs.cs" />
/// <see href="https://github.com/aaru-dps/Aaru/blob/master/Aaru.Images/AaruFormat/Structs.cs" />
public class IndexEntry
{
/// <summary>Type of item pointed by this entry</summary>

View File

@@ -6,7 +6,7 @@ namespace SabreTools.FileTypes.Aaru
/// <summary>
/// Header for the index, followed by entries
/// </summary>
/// <see cref="https://github.com/aaru-dps/Aaru/blob/master/Aaru.Images/AaruFormat/Structs.cs" />
/// <see href="https://github.com/aaru-dps/Aaru/blob/master/Aaru.Images/AaruFormat/Structs.cs" />
public class IndexHeader
{
/// <summary>Identifier, <see cref="BlockType.Index" /></summary>