mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
SPIGOT-7335: Fix typo in TextDisplay#TextAlignment enum name
This commit is contained in:
parent
13eb414669
commit
46ba7c9fac
1 changed files with 3 additions and 3 deletions
|
@ -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).
|
||||
|
|
Loading…
Add table
Reference in a new issue