diff options
author | Jerome Pasion <jerome.pasion@nokia.com> | 2010-08-23 14:37:21 (GMT) |
---|---|---|
committer | Jerome Pasion <jerome.pasion@nokia.com> | 2010-08-23 14:37:21 (GMT) |
commit | 04ebf3e4382e1e2a0774759f7b92915ef341cc32 (patch) | |
tree | 7c4f6f4e85f0b629a2fad51c205802613f69c453 | |
parent | 17238705b9e94c7eb1b7fafc76a582215e1a0b01 (diff) | |
download | Qt-04ebf3e4382e1e2a0774759f7b92915ef341cc32.zip Qt-04ebf3e4382e1e2a0774759f7b92915ef341cc32.tar.gz Qt-04ebf3e4382e1e2a0774759f7b92915ef341cc32.tar.bz2 |
Fixed typo in qmath documentation.
Fixed typo in QPointer documentation. Task: QTBUG-13056
-rw-r--r-- | src/corelib/kernel/qmath.qdoc | 4 | ||||
-rw-r--r-- | src/corelib/kernel/qpointer.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/kernel/qmath.qdoc b/src/corelib/kernel/qmath.qdoc index 442fb4d..48f74b6 100644 --- a/src/corelib/kernel/qmath.qdoc +++ b/src/corelib/kernel/qmath.qdoc @@ -99,7 +99,7 @@ Arcsine is the inverse operation of sine. \relates <QtCore/qmath.h> - \sa qSine(), qAtan(), qAcos() + \sa qSin(), qAtan(), qAcos() */ /*! @@ -131,7 +131,7 @@ /*! \fn qreal qLn(qreal v) - Returns the natural logarithm of v. Natural logarithm uses base e. + Returns the natural logarithm of \a v. Natural logarithm uses base e. \relates <QtCore/qmath.h> \sa qExp() diff --git a/src/corelib/kernel/qpointer.cpp b/src/corelib/kernel/qpointer.cpp index 5cd0220..fbfb961 100644 --- a/src/corelib/kernel/qpointer.cpp +++ b/src/corelib/kernel/qpointer.cpp @@ -41,7 +41,7 @@ /*! \class QPointer - \brief The QPointer class is a template class that provides guarded pointers to QObjects. + \brief The QPointer class is a template class that provides guarded pointers to QObject. \ingroup objectmodel |