This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push: new e5a34caa Javadoc e5a34caa is described below commit e5a34caa99bdb5c4bb5aa0875433d1e78bc387b0 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed May 31 14:50:18 2023 -0400 Javadoc --- .../java/org/apache/commons/io/RandomAccessFileMode.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/io/RandomAccessFileMode.java b/src/main/java/org/apache/commons/io/RandomAccessFileMode.java index f928e587..bb2c1236 100644 --- a/src/main/java/org/apache/commons/io/RandomAccessFileMode.java +++ b/src/main/java/org/apache/commons/io/RandomAccessFileMode.java @@ -29,24 +29,24 @@ import java.nio.file.Path; public enum RandomAccessFileMode { /** - * Mode "r" opens for reading only. + * Mode {@code "r"} opens for reading only. */ READ_ONLY("r"), /** - * Mode "rw" opens for reading and writing. + * Mode {@code "rw"} opens for reading and writing. */ READ_WRITE("rw"), /** - * Mode "rws" opens for reading and writing, as with "rw", and also require that every update to the file's content or - * metadata be written synchronously to the underlying storage device. + * Mode {@code "rws"} opens for reading and writing, as with {@code "rw"}, and also require that every update to the file's content or metadata be written + * synchronously to the underlying storage device. */ READ_WRITE_SYNC_ALL("rws"), /** - * Mode "rwd" open for reading and writing, as with "rw", and also require that every update to the file's content be - * written synchronously to the underlying storage device. + * Mode {@code "rwd"} open for reading and writing, as with {@code "rw"}, and also require that every update to the file's content be written synchronously + * to the underlying storage device. */ READ_WRITE_SYNC_CONTENT("rwd");