1
1

Merge pull request #5734 from t-kurita/pr/java-doc-descriptions

java: Fix typos of `javadoc`
Этот коммит содержится в:
KAWASHIMA Takahiro 2018-09-19 16:39:58 +09:00 коммит произвёл GitHub
родитель cf2880cae6 fb8311d331
Коммит 6e4ac8b932
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 13 добавлений и 9 удалений

Просмотреть файл

@ -1228,7 +1228,7 @@ public class Comm implements Freeable, Cloneable
private native void barrier(long comm) throws MPIException;
/**
* Nonblocking barrier sinchronization.
* Nonblocking barrier synchronization.
* <p>Java binding of the MPI operation {@code MPI_IBARRIER}.
* @return communication request
* @throws MPIException Signals that an MPI exception of some sort has occurred.

Просмотреть файл

@ -11,6 +11,7 @@
* All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -67,9 +68,9 @@ public final class DistGraphNeighbors
}
/**
* Gets a process for which the calling processs is a destination.
* Gets a process for which the calling process is a destination.
* @param i source index
* @return process for which the calling processs is a destination
* @return process for which the calling process is a destination
*/
public int getSource(int i)
{

Просмотреть файл

@ -11,6 +11,7 @@
* All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -151,7 +152,7 @@ public final class GraphComm extends Intracomm
* and {@code MPI_GRAPH_NEIGHBORS}.
* <p>The number of neighbors can be extracted from the size of the result.
* @param rank rank of a process in the group of this communicator
* @return array of ranks of neighbouring processes to one specified
* @return array of ranks of neighboring processes to one specified
* @throws MPIException Signals that an MPI exception of some sort has occurred.
*/
public int[] getNeighbors(int rank) throws MPIException

Просмотреть файл

@ -11,6 +11,7 @@
* All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -805,7 +806,7 @@ public class Intracomm extends Comm
/**
* Java binding of {@code MPI_LOOKUP_NAME}.
* @param service service name
* @param info mplementation-specific information
* @param info implementation-specific information
* @return port name
* @throws MPIException Signals that an MPI exception of some sort has occurred.
*/

Просмотреть файл

@ -11,6 +11,7 @@
* All rights reserved.
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -120,7 +121,7 @@ public class Request implements Freeable
* Adds a receive buffer to this Request object. This method
* should be called by the internal api whenever a persistent
* request is created and any time a request object, that has
* an associated buffer, is returned from an opperation to protect
* an associated buffer, is returned from an operation to protect
* the buffer from getting prematurely garbage collected.
* @param buf buffer to add to the array list
*/
@ -133,7 +134,7 @@ public class Request implements Freeable
* Adds a send buffer to this Request object. This method
* should be called by the internal api whenever a persistent
* request is created and any time a request object, that has
* an associated buffer, is returned from an opperation to protect
* an associated buffer, is returned from an operation to protect
* the buffer from getting prematurely garbage collected.
* @param buf buffer to add to the array list
*/
@ -287,7 +288,7 @@ public class Request implements Freeable
* <p>If some request completed, the index in array of {@code requests}
* for that request can be obtained from the returned status object.
* The corresponding element in array of {@code requests} becomes inactive.
* If no request completed, {testAny} returns {@code null}.
* If no request completed, {@code testAnyStatus} returns {@code null}.
* @param requests array of requests
* @return status object if one request completed, {@code null} otherwise.
* @throws MPIException Signals that an MPI exception of some sort has occurred.
@ -307,7 +308,7 @@ public class Request implements Freeable
* Tests for completion of either one or none of the operations
* associated with active requests.
* <p>Java binding of the MPI operation {@code MPI_TESTANY}.
* <p>If some request completed, ii becomes inactive.
* <p>If some request completed, it becomes inactive.
* @param requests array of requests
* @return index of operation that completed, or {@code MPI.UNDEFINED}
* if none completed.