Updated Branches: refs/heads/master 251656f77 -> 3537fa34c
Fixed typos in the Log javadoc. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3537fa34 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/3537fa34 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/3537fa34 Branch: refs/heads/master Commit: 3537fa34c6c15f6940447fa5bfb45f423b085fd2 Parents: 251656f Author: Benjamin Mahler <[email protected]> Authored: Tue Nov 12 15:53:13 2013 -0800 Committer: Benjamin Mahler <[email protected]> Committed: Tue Nov 12 15:53:13 2013 -0800 ---------------------------------------------------------------------- src/java/src/org/apache/mesos/Log.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/3537fa34/src/java/src/org/apache/mesos/Log.java ---------------------------------------------------------------------- diff --git a/src/java/src/org/apache/mesos/Log.java b/src/java/src/org/apache/mesos/Log.java index fec3ad4..d27e4f9 100644 --- a/src/java/src/org/apache/mesos/Log.java +++ b/src/java/src/org/apache/mesos/Log.java @@ -139,7 +139,7 @@ public class Log { } /** - * Attepts to read from the log between the specified positions + * Attempts to read from the log between the specified positions * (inclusive). If either of the positions are invalid, an * OperationFailedException will get thrown. Unfortunately, this * will also get thrown in other circumstances (e.g., disk @@ -185,14 +185,14 @@ public class Log { } /** - * Attepts to append to the log with the specified data returning + * Attempts to append to the log with the specified data returning * the new end position of the log if successful. */ public native Position append(byte[] data, long timeout, TimeUnit unit) throws TimeoutException, WriterFailedException; /** - * Attepts to truncate the log (from the beginning to the + * Attempts to truncate the log (from the beginning to the * specified position exclusive) If the position is invalid, an * WriterFailedException will get thrown. Unfortunately, this will * also get thrown in other circumstances (e.g., disk failure) and
