mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 19:55:52 -07:00
SPIGOT-7335: Fix typo in TextDisplay#TextAlignment enum name
By: md_5 <git@md-5.net>
This commit is contained in:
@@ -119,19 +119,19 @@ public interface TextDisplay extends Display {
|
||||
* @return text alignment
|
||||
*/
|
||||
@NotNull
|
||||
TextAligment getAlignment();
|
||||
TextAlignment getAlignment();
|
||||
|
||||
/**
|
||||
* Sets the text alignment for this display.
|
||||
*
|
||||
* @param alignment new alignment
|
||||
*/
|
||||
void setAlignment(@NotNull TextAligment alignment);
|
||||
void setAlignment(@NotNull TextAlignment alignment);
|
||||
|
||||
/**
|
||||
* Represents possible text alignments for this display.
|
||||
*/
|
||||
public enum TextAligment {
|
||||
public enum TextAlignment {
|
||||
|
||||
/**
|
||||
* Center aligned text (default).
|
||||
|
Reference in New Issue
Block a user