Skip to content

Commit

Permalink
Fix typo AttachementFrame -> AttachmentFrame
Browse files Browse the repository at this point in the history
  • Loading branch information
Quppa authored and decriptor committed Jun 12, 2024
1 parent c853d26 commit 8a45f31
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/TaglibSharp/Id3v2/Frames/AttachmentFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ public override Frame Clone ()
/// generic way or getting and setting pictures which is preferable
/// to format specific code.</para>
/// </remarks>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
public class AttachedPictureFrame : AttachmentFrame
{
#region Constructors
Expand All @@ -974,7 +974,7 @@ public class AttachedPictureFrame : AttachmentFrame
/// cref="AttachmentFrame" /> with no contents and the
/// default values.
/// </summary>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
public AttachedPictureFrame ()
{
}
Expand Down Expand Up @@ -1025,7 +1025,7 @@ public AttachedPictureFrame ()
/// }
/// </code>
/// </example>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
public AttachedPictureFrame (IPicture picture)
: base (picture)
{
Expand All @@ -1046,7 +1046,7 @@ public AttachedPictureFrame (IPicture picture)
/// A <see cref="byte" /> indicating the ID3v2 version the
/// raw frame is encoded in.
/// </param>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
public AttachedPictureFrame (ByteVector data, byte version)
: base (data, version)
{
Expand All @@ -1073,7 +1073,7 @@ public AttachedPictureFrame (ByteVector data, byte version)
/// A <see cref="byte" /> indicating the ID3v2 version the
/// raw frame is encoded in.
/// </param>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
protected internal AttachedPictureFrame (ByteVector data, int offset, FrameHeader header, byte version)
: base (data, offset, header, version)
{
Expand All @@ -1092,7 +1092,7 @@ protected internal AttachedPictureFrame (ByteVector data, int offset, FrameHeade
/// used for storing files and other objects relevant to the file but
/// not supported by other frames.</para>
/// </remarks>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
public class GeneralEncapsulatedObjectFrame : AttachmentFrame
{

Expand All @@ -1103,7 +1103,7 @@ public class GeneralEncapsulatedObjectFrame : AttachmentFrame
/// cref="GeneralEncapsulatedObjectFrame" /> with no
/// contents.
/// </summary>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
public GeneralEncapsulatedObjectFrame ()
{
Type = PictureType.NotAPicture;
Expand All @@ -1122,7 +1122,7 @@ public GeneralEncapsulatedObjectFrame ()
/// A <see cref="byte" /> indicating the ID3v2 version the
/// raw frame is encoded in.
/// </param>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
public GeneralEncapsulatedObjectFrame (ByteVector data, byte version)
: base (data, version)
{
Expand Down Expand Up @@ -1151,7 +1151,7 @@ public GeneralEncapsulatedObjectFrame (ByteVector data, byte version)
/// A <see cref="byte" /> indicating the ID3v2 version the
/// raw frame is encoded in.
/// </param>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
protected internal GeneralEncapsulatedObjectFrame (ByteVector data, int offset, FrameHeader header, byte version)
: base (data, offset, header, version)
{
Expand All @@ -1172,7 +1172,7 @@ protected internal GeneralEncapsulatedObjectFrame (ByteVector data, int offset,
/// A <see cref="string" /> containing the file name of the
/// object stored in the current instance.
/// </value>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
public string FileName {
get {
if (Filename != null)
Expand All @@ -1191,7 +1191,7 @@ public string FileName {
/// A <see cref="ByteVector" /> containing the object data
/// stored in the current instance.
/// </value>
[Obsolete ("Use AttachementFrame instead")]
[Obsolete ("Use AttachmentFrame instead")]
public ByteVector Object {
get { return Data ?? new ByteVector (); }
set { Data = value; }
Expand Down

0 comments on commit 8a45f31

Please sign in to comment.