grzegorzmazur / yacas

Computer calculations made easy
http://www.yacas.org
GNU Lesser General Public License v2.1
120 stars 23 forks source link

Incorrect tags used in documenting functions #312

Closed albert-github closed 4 years ago

albert-github commented 4 years ago

In the file cyacas/libyacas/include/yacas/patterns.h around the lines 180 we see:

    /// - If \a aPattern is a list of the form <tt>( _ var )<tt>,
    ///   where \c var is an atom, LookUp() is called on \c var. Then
    ///   the correspoding MatchVariable is constructed and returned.
    /// - If \a aPattern is a list of the form <tt>( _ var expr )<tt>,
    ///   where \c var is an atom, LookUp() is called on \c var. Then, 

I think this should read:

    /// - If \a aPattern is a list of the form <tt>( _ var )</tt>,
    ///   where \c var is an atom, LookUp() is called on \c var. Then
    ///   the corresponding MatchVariable is constructed and returned.
    /// - If \a aPattern is a list of the form <tt>( _ var expr )</tt>,
    ///   where \c var is an atom, LookUp() is called on \c var. Then, 

i.e.:

grzegorzmazur commented 4 years ago

Thanks!