Skip to content

Commit

Permalink
Default to Alignment.Unspecified in Format class too...
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHimself committed Apr 2, 2023
1 parent 7eee3b7 commit 114f21b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ManyFormats/Format.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public virtual string Link(string text, string uri)
return NotImplemented(text, nameof(Link));
}

public virtual string Image(string uri, int height = -1, int width = -1, Alignment align = Alignment.Left)
public virtual string Image(string uri, int height = -1, int width = -1, Alignment align = Alignment.Unspecified)
{
return NotImplemented(uri, nameof(Image));
}
Expand Down

0 comments on commit 114f21b

Please sign in to comment.