You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/11/08 18:51:32 UTC

[commons-numbers] 05/32: Javadoc requires period at end of first line.

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit a3d48c746d7a8c96bdcd460218ed903d5dfd77c8
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Wed Nov 6 22:09:49 2019 +0000

    Javadoc requires period at end of first line.
---
 .../main/java/org/apache/commons/numbers/complex/Complex.java  | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java
index 238abf2..c47b510 100644
--- a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java
+++ b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java
@@ -135,7 +135,7 @@ public final class Complex implements Serializable  {
 
     /**
      * For a real constructor argument x, returns a new Complex object c
-     * where {@code c = cos(x) + i sin (x)}
+     * where {@code c = cos(x) + i sin (x)}.
      *
      * @param x {@code double} to build the cis number
      * @return {@code Complex}
@@ -288,8 +288,8 @@ public final class Complex implements Serializable  {
     }
 
      /**
-     * Returns the conjugate of this complex number.
-     * C++11 grammar.
+     * Returns the conjugate of this complex number
+     * (C++11 grammar).
      * @return the conjugate of this complex object.
      * @see #conjugate()
      */
@@ -537,7 +537,7 @@ public final class Complex implements Serializable  {
         return imaginary;
     }
     /**
-     * Access the imaginary part (C++ grammar)
+     * Access the imaginary part (C++ grammar).
      *
      * @return the imaginary part.
      */
@@ -555,7 +555,7 @@ public final class Complex implements Serializable  {
     }
 
      /**
-     * Access the real part (C++ grammar)
+     * Access the real part (C++ grammar).
      *
      * @return the real part.
      */