Changeset 260 for trunk/src/vector.h


Ignore:
Timestamp:
Mar 4, 2005, 2:11:28 AM (19 years ago)
Author:
Jari Häkkinen
Message:

Removed stray punctuation in documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/vector.h

    r259 r260  
    107107    /// Vector addition, \f$this_i = this_i + other_i \; \forall i\f$.
    108108    ///
    109     /// @return .GSL_SUCCESS on normal exit.
     109    /// @return GSL_SUCCESS on normal exit.
    110110    ///
    111111    // Jari, doxygen group as Vector operators
     
    116116    /// \forall i\f$.
    117117    ///
    118     /// @return .GSL_SUCCESS on normal exit.
     118    /// @return GSL_SUCCESS on normal exit.
    119119    ///
    120120    // Jari, doxygen group as Vector operators
     
    126126    /// this_i/other_i \; \forall i\f$.
    127127    ///
    128     /// @return .GSL_SUCCESS on normal exit.
     128    /// @return GSL_SUCCESS on normal exit.
    129129    ///
    130130    // Jari, doxygen group as Vector operators
     
    201201    /// this_i * other_i \; \forall i\f$.
    202202    ///
    203     /// @return .GSL_SUCCESS on normal exit.
     203    /// @return GSL_SUCCESS on normal exit.
    204204    ///
    205205    // Jari, doxygen group as Vector operators
     
    209209    /// Reverse the order of elements in the vector.
    210210    ///
    211     /// @return .GSL_SUCCESS on normal exit.
     211    /// @return GSL_SUCCESS on normal exit.
    212212    ///
    213213    // Jari, doxygen group as Exchanging elements
     
    217217    /// Rescale vector, \f$this_i = this_i * factor \; \forall i\f$.
    218218    ///
    219     /// @return .GSL_SUCCESS on normal exit.
     219    /// @return GSL_SUCCESS on normal exit.
    220220    ///
    221221    // Jari, doxygen group as Vector operators
     
    250250    /// Vector subtraction, \f$this_i = this_i - other_i \; \forall i\f$.
    251251    ///
    252     /// @return .GSL_SUCCESS on normal exit.
     252    /// @return GSL_SUCCESS on normal exit.
    253253    ///
    254254    // Jari, doxygen group as Vector operators
     
    267267    /// same length.
    268268    ///
    269     /// @return .GSL_SUCCESS on normal exit.
     269    /// @return GSL_SUCCESS on normal exit.
    270270    ///
    271271    inline int swap(vector& other) { return gsl_vector_swap(v_,other.v_); }
     
    274274    /// Exchange elements \a i and \a j.
    275275    ///
    276     /// @return .GSL_SUCCESS on normal exit.
     276    /// @return GSL_SUCCESS on normal exit.
    277277    ///
    278278    // Jari, doxygen group as Exchanging elements
Note: See TracChangeset for help on using the changeset viewer.