diff --git a/doc/src/examples.qdoc b/doc/src/examples.qdoc
index e74155f..db6b55e 100644
--- a/doc/src/examples.qdoc
+++ b/doc/src/examples.qdoc
@@ -21,7 +21,6 @@
Stacked Bar Chart Drilldown example
Line Chart example
Pie Chart example
- GDP Chart example
Spline Chart example
diff --git a/src/qchartview.cpp b/src/qchartview.cpp
index 800f31a..8890c0b 100644
--- a/src/qchartview.cpp
+++ b/src/qchartview.cpp
@@ -142,7 +142,7 @@ void QChartView::setChartTitle(const QString& title)
}
/*!
- Gets the chart \a title. A description text that is rendered above the chart.
+ Returns the chart's title. A description text that is rendered above the chart.
*/
QString QChartView::chartTitle() const
{
diff --git a/src/xychart/qxyseries.cpp b/src/xychart/qxyseries.cpp
index 049bda6..f53a275 100644
--- a/src/xychart/qxyseries.cpp
+++ b/src/xychart/qxyseries.cpp
@@ -15,11 +15,17 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
\fn QPen QXYSeries::pen() const
- \brief Returns the pen used to draw points for this series.
+ \brief Returns pen used to draw points for series.
\sa setPen()
*/
/*!
+ \fn QBrush QXYSeries::brush() const
+ \brief Returns brush used to draw points for series.
+ \sa setBrush()
+*/
+
+/*!
\fn void QXYSeries::pointReplaced(int index)
\brief \internal \a index
*/
@@ -150,7 +156,7 @@ int QXYSeries::count() const
}
/*!
- Sets \a pen used for points on the chart.
+ Sets \a pen used for drawing points on the chart.
*/
void QXYSeries::setPen(const QPen& pen)
{
@@ -161,7 +167,7 @@ void QXYSeries::setPen(const QPen& pen)
}
/*!
- Sets \a brush used for points on the chart.
+ Sets \a brush used for drawing points on the chart.
*/
void QXYSeries::setBrush(const QBrush& brush)