Skip to content

Commit f819d0f

Browse files
authored
Merge pull request #89 from alexrockhill/circle
Fix code-block
2 parents a9b46ed + ccac6c1 commit f819d0f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ To get the latest code using `git <https://git-scm.com/>`__, open a terminal and
7575

7676
.. code-block:: bash
7777
78-
git clone git://github.com/mne-tools/mne-connectivity.git
78+
git clone https://github.com/mne-tools/mne-connectivity.git
7979
8080
Alternatively, you can also download a
8181
`zip file of the latest development version <https://github.com/mne-tools/mne-connectivity/archive/main.zip>`__.

examples/mixed_source_space_connectivity.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@
182182
#
183183
# By default matplotlib does not save using the facecolor, even though this was
184184
# set when the figure was generated. If not set via savefig, the labels, title,
185-
# and legend will be cut off from the output png file::
185+
# and legend will be cut off from the output png file.
186186
#
187-
# .. code-block:: python
187+
# .. code-block:: python
188188
#
189189
# fname_fig = op.join(data_path, 'MEG', 'sample', 'plot_mixed_connect.png')
190-
# plt.savefig(fname_fig, facecolor=fig.get_facecolor())
190+
# fig.savefig(fname_fig, facecolor=fig.get_facecolor())

0 commit comments

Comments
 (0)