Skip to content

Commit 923a195

Browse files
authored
Merge pull request #156 from highcharts-for-python/docs/149-tutorial-typos
Bugfix: Fixed typos in Getting Started tutorial. Closes #149.
2 parents 2dac732 + 424173b commit 923a195

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Release 1.6.0
99
`@ByronCook <https://github.com/ByronCook>`__ ).
1010
* **ENHANCEMENT:** Added support for the ``HCP_ALLOW_SPECIAL_IPS`` environment variable
1111
which allows localhost (or other special URLs) to pass URL validation. (#147)
12+
* **DOCUMENTATION:** Fixed typos in **Getting Started** tutorial. (#149)
1213
* **DOCUMENTATION:** Fixed typos in documentation (courtesy of `@karlacio <https://github.com/karlacio>`
1314
and `@maxduganknight <https://github.com/maxduganknight>`).
1415

docs/tutorials/_assembling_a_chart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ from a :class:`pandas.DataFrame <pandas:pandas.DataFrame>`,
1818
1919
# From a Numpy ndarray
2020
21-
my_chart = Chart.from_array(data = as_ndarray, series_type = 'line')
21+
my_chart = Chart.from_array(as_ndarray, series_type = 'line')
2222
2323
# From a Python dict
2424

docs/tutorials/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ or Python :class:`dict <python:dict>`:
9292
df = pandas.DataFrame(my_iterable, columns=['x', 'y'])
9393
9494
# As a Numpy ndarray
95-
as_ndarray = numpy.as_ndarray(my_iterable)
95+
as_ndarray = numpy.asarray(my_iterable)
9696
9797
# As a Python dict
9898
as_dict = {'x': x[0], 'y': x[1] for x in my_iterable}

0 commit comments

Comments
 (0)