Commits

Gero Cammans authored 9b248941c93
Improve/fix java docs
No tags

src/main/java/org/bukkit/World.java

Modified
316 316 /**
317 317 * Regenerates the {@link Chunk} at the specified coordinates
318 318 *
319 319 * @param x X-coordinate of the chunk
320 320 * @param z Z-coordinate of the chunk
321 321 * @return Whether the chunk was actually regenerated
322 322 */
323 323 public boolean regenerateChunk(int x, int z);
324 324
325 325 /**
326 - * Regenerates the {@link Chunk}s at within the specified coordinates
326 + * Regenerates the {@link Chunk Chunks} within the specified coordinates
327 327 *
328 328 * @param minX minimum X-coordinate of the chunk
329 329 * @param minZ maximum X-coordinate of the chunk
330 330 * @param maxX minimum Z-coordinate of the chunk
331 331 * @param maxZ maximum Z-coordinate of the chunk
332 332 * @return The number of chunks actually regenerated
333 333 */
334 334 public int regenerateChunks(int minX, int minZ, int maxX, int maxZ);
335 335
336 336 /**

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut