mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-02 17:32:03 +01:00
SPIGOT-7335: Fix typo in TextDisplay#TextAlignment enum name
By: md_5 <git@md-5.net>
This commit is contained in:
parent
50c3f2e6e0
commit
028c02ffb7
1 changed files with 3 additions and 3 deletions
|
@ -119,19 +119,19 @@ public interface TextDisplay extends Display {
|
||||||
* @return text alignment
|
* @return text alignment
|
||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
TextAligment getAlignment();
|
TextAlignment getAlignment();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the text alignment for this display.
|
* Sets the text alignment for this display.
|
||||||
*
|
*
|
||||||
* @param alignment new alignment
|
* @param alignment new alignment
|
||||||
*/
|
*/
|
||||||
void setAlignment(@NotNull TextAligment alignment);
|
void setAlignment(@NotNull TextAlignment alignment);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents possible text alignments for this display.
|
* Represents possible text alignments for this display.
|
||||||
*/
|
*/
|
||||||
public enum TextAligment {
|
public enum TextAlignment {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Center aligned text (default).
|
* Center aligned text (default).
|
||||||
|
|
Loading…
Reference in a new issue