Repository: giraph Updated Branches: refs/heads/trunk 937d5038c -> 0adfdfd42
Correction in interface documentation Summary: The description of the arguments in TypoOps.set() is reversed. Test Plan: n/a Reviewers: majakabiljo, sergey.edunov, ikabiljo Reviewed By: ikabiljo Differential Revision: https://reviews.facebook.net/D43425 Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/0adfdfd4 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/0adfdfd4 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/0adfdfd4 Branch: refs/heads/trunk Commit: 0adfdfd4205d24be29ab65408643b50ffa1f81d1 Parents: 937d503 Author: Sergey Edunov <[email protected]> Authored: Tue Dec 1 11:52:29 2015 -0800 Committer: Sergey Edunov <[email protected]> Committed: Tue Dec 1 11:52:29 2015 -0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/giraph/types/ops/TypeOps.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/0adfdfd4/giraph-core/src/main/java/org/apache/giraph/types/ops/TypeOps.java ---------------------------------------------------------------------- diff --git a/giraph-core/src/main/java/org/apache/giraph/types/ops/TypeOps.java b/giraph-core/src/main/java/org/apache/giraph/types/ops/TypeOps.java index c4bd702..7b54ee6 100644 --- a/giraph-core/src/main/java/org/apache/giraph/types/ops/TypeOps.java +++ b/giraph-core/src/main/java/org/apache/giraph/types/ops/TypeOps.java @@ -46,9 +46,9 @@ public interface TypeOps<T> { */ T createCopy(T from); /** - * Copies value from first argument into the second. - * @param to Value of object to be copied - * @param from Object into which value should be copied + * Copies the value from the second argument into the first. + * @param to Object into which the value should be copied + * @param from Value of object to be copied */ void set(T to, T from); }
