Skip to content

Commit

Permalink
fix comment errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rjnrohit authored Apr 17, 2020
1 parent 4e87ab0 commit ced0055
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions include/boost/astronomy/coordinate/arithmetic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ auto cross
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then cross product of both cartesian
vectors is converted into cartesian system type and returned*/
vectors is converted into cartesian differential type and returned*/

/*checking types if it is not subclass of
base_representaion then compile time erorr is generated*/
Expand Down Expand Up @@ -246,7 +246,7 @@ auto cross
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then cross product of both cartesian
vectors is converted into cartesian system type and returned*/
vectors is converted into spherical differential system type and returned*/

/*checking types if it is not subclass of
base_representaion then compile time erorr is generated*/
Expand Down Expand Up @@ -341,7 +341,7 @@ auto cross
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then cross product of both cartesian
vectors is converted into cartesian system type and returned*/
vectors is converted into spherical equatorial differential system type and returned*/

/*checking types if it is not subclass of
base_representaion then compile time erorr is generated*/
Expand Down Expand Up @@ -437,7 +437,7 @@ auto cross
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then cross product of both cartesian
vectors is converted into cartesian system type and returned*/
vectors is converted into spherical coslat differential system type and returned*/

/*checking types if it is not subclass of
base_representaion then compile time erorr is generated*/
Expand Down Expand Up @@ -568,7 +568,7 @@ template<typename Differential2, typename ...Args>
auto dot(spherical_coslat_differential<Args...> const& differential1, Differential2 const& differential2)
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then dot product of both cartesian
cartesian differential system then dot product of both cartesian
product is converted into requested type and returned*/

/*converting both coordinates/vector into cartesian system*/
Expand Down Expand Up @@ -615,7 +615,7 @@ template<typename Differential2, typename ...Args>
auto dot(spherical_equatorial_differential<Args...> const& differential1, Differential2 const& differential2)
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then dot product of both cartesian
cartesian differential system then dot product of both cartesian
product is converted into requested type and returned*/

/*converting both coordinates/vector into cartesian system*/
Expand Down Expand Up @@ -663,7 +663,7 @@ auto dot(cartesian_differential<Args...> const& differential1, Differential2 con
{

/*!both the coordinates/vector are first converted into
cartesian coordinate system then dot product of both cartesian
cartesian differential system then dot product of both cartesian
product is converted into requested type and returned*/

/*converting both coordinates/vector into cartesian system*/
Expand Down Expand Up @@ -709,7 +709,7 @@ template<typename Differential2, typename ...Args>
auto dot(spherical_differential<Args...> const& differential1, Differential2 const& differential2)
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then dot product of both cartesian
cartesian differential system then dot product of both cartesian
product is converted into requested type and returned*/

/*converting both coordinates/vector into cartesian system*/
Expand Down Expand Up @@ -1011,7 +1011,7 @@ auto sum
)
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then sum of both cartesian
cartesian differential system then sum of both cartesian
vectors is converted into the type of first argument and returned*/

typedef cartesian_differential<Args...> Differential1;
Expand Down Expand Up @@ -1055,7 +1055,7 @@ auto sum
)
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then sum of both cartesian
cartesian differential system then sum of both cartesian
vectors is converted into the type of first argument and returned*/

typedef spherical_differential<Args...> Differential1;
Expand Down Expand Up @@ -1099,7 +1099,7 @@ auto sum
)
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then sum of both cartesian
cartesian differential system then sum of both cartesian
vectors is converted into the type of first argument and returned*/

typedef spherical_coslat_differential<Args...> Differential1;
Expand Down Expand Up @@ -1142,7 +1142,7 @@ auto sum
)
{
/*!both the coordinates/vector are first converted into
cartesian coordinate system then sum of both cartesian
cartesian differential system then sum of both cartesian
vectors is converted into the type of first argument and returned*/

typedef spherical_equatorial_differential<Args...> Differential1;
Expand Down Expand Up @@ -1236,7 +1236,7 @@ auto mean
{

/*!both the coordinates/vector are first converted into
cartesian coordinate system then mean of both cartesian
cartesian differential system then mean of both cartesian
vectors is converted into the type of first argument and returned*/

typedef cartesian_differential<Args...> Differential1;
Expand Down Expand Up @@ -1282,7 +1282,7 @@ auto mean
{

/*!both the coordinates/vector are first converted into
cartesian coordinate system then mean of both cartesian
cartesian differential system then mean of both cartesian
vectors is converted into the type of first argument and returned*/

typedef spherical_differential<Args...> Differential1;
Expand Down Expand Up @@ -1328,7 +1328,7 @@ auto mean
{

/*!both the coordinates/vector are first converted into
cartesian coordinate system then mean of both cartesian
cartesian differential system then mean of both cartesian
vectors is converted into the type of first argument and returned*/

typedef spherical_equatorial_differential<Args...> Differential1;
Expand Down Expand Up @@ -1374,7 +1374,7 @@ auto mean
{

/*!both the coordinates/vector are first converted into
cartesian coordinate system then mean of both cartesian
cartesian differential system then mean of both cartesian
vectors is converted into the type of first argument and returned*/

typedef spherical_coslat_differential<Args...> Differential1;
Expand Down

0 comments on commit ced0055

Please sign in to comment.