Skip to content

Commit

Permalink
Merge pull request #156 from highcharts-for-python/docs/149-tutorial-…
Browse files Browse the repository at this point in the history
…typos

Bugfix: Fixed typos in Getting Started tutorial. Closes #149.
  • Loading branch information
hcpchris authored Apr 6, 2024
2 parents 2dac732 + 424173b commit 923a195
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Release 1.6.0
`@ByronCook <https://github.com/ByronCook>`__ ).
* **ENHANCEMENT:** Added support for the ``HCP_ALLOW_SPECIAL_IPS`` environment variable
which allows localhost (or other special URLs) to pass URL validation. (#147)
* **DOCUMENTATION:** Fixed typos in **Getting Started** tutorial. (#149)
* **DOCUMENTATION:** Fixed typos in documentation (courtesy of `@karlacio <https://github.com/karlacio>`
and `@maxduganknight <https://github.com/maxduganknight>`).

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/_assembling_a_chart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ from a :class:`pandas.DataFrame <pandas:pandas.DataFrame>`,
# From a Numpy ndarray
my_chart = Chart.from_array(data = as_ndarray, series_type = 'line')
my_chart = Chart.from_array(as_ndarray, series_type = 'line')
# From a Python dict
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ or Python :class:`dict <python:dict>`:
df = pandas.DataFrame(my_iterable, columns=['x', 'y'])
# As a Numpy ndarray
as_ndarray = numpy.as_ndarray(my_iterable)
as_ndarray = numpy.asarray(my_iterable)
# As a Python dict
as_dict = {'x': x[0], 'y': x[1] for x in my_iterable}
Expand Down

0 comments on commit 923a195

Please sign in to comment.