Skip to content

Commit b6d1b04

Browse files
committed
correct World#chunk javadocs
1 parent 6d2f3be commit b6d1b04

File tree

1 file changed

+6
-6
lines changed
  • src/main/java/org/spongepowered/api/world

1 file changed

+6
-6
lines changed

src/main/java/org/spongepowered/api/world/World.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ default Optional<? extends Player> closestPlayer(final int x, final int y, final
123123
* This gets a guaranteed {@link Chunk} at the desired block position; however,
124124
* the {@link Chunk} instance may be {@link Chunk#isEmpty() empty}, and
125125
* likewise, may not be generated, valid, pre-existing. It is important to
126-
* check for these cases prior to attmepting to modify the chunk.
126+
* check for these cases prior to attempting to modify the chunk.
127127
*
128128
* <p>Note that this is still different from {@link #chunk(Vector3i)}
129129
* due to it being a relative block position which can vary depending on
@@ -140,7 +140,7 @@ default Optional<? extends Player> closestPlayer(final int x, final int y, final
140140
* This gets a guaranteed {@link Chunk} at the desired block position; however,
141141
* the {@link Chunk} instance may be {@link Chunk#isEmpty() empty}, and
142142
* likewise, may not be generated, valid, pre-existing. It is important to
143-
* check for these cases prior to attmepting to modify the chunk.
143+
* check for these cases prior to attempting to modify the chunk.
144144
*
145145
* <p>Note that this is still different from {@link #chunk(Vector3i)}
146146
* due to the relative block position dictated by {@link Server#chunkLayout()},
@@ -156,10 +156,10 @@ default Optional<? extends Player> closestPlayer(final int x, final int y, final
156156

157157
/**
158158
* {@inheritDoc}
159-
* This gets a guaranteed {@link Chunk} at the desired block position; however,
159+
* This gets a guaranteed {@link Chunk} at the desired chunk position; however,
160160
* the {@link Chunk} instance may be {@link Chunk#isEmpty() empty}, and
161161
* likewise, may not be generated, valid, pre-existing. It is important to
162-
* check for these cases prior to attmepting to modify the chunk.
162+
* check for these cases prior to attempting to modify the chunk.
163163
*
164164
* @param chunkPos The chunk position relative to the {@link Server#chunkLayout() chunk layout}
165165
* @return The available chunk at that position
@@ -172,10 +172,10 @@ default Chunk chunk(final Vector3i chunkPos) {
172172

173173
/**
174174
* {@inheritDoc}
175-
* This gets a guaranteed {@link Chunk} at the desired block position; however,
175+
* This gets a guaranteed {@link Chunk} at the desired chunk position; however,
176176
* the {@link Chunk} instance may be {@link Chunk#isEmpty() empty}, and
177177
* likewise, may not be generated, valid, pre-existing. It is important to
178-
* check for these cases prior to attmepting to modify the chunk.
178+
* check for these cases prior to attempting to modify the chunk.
179179
*
180180
* @param cx The x chunk coordinate
181181
* @param cy The y coordinate

0 commit comments

Comments
 (0)