diff --git a/doc/roadmap.rst b/doc/roadmap.rst index dfe7912e0..49f94b3eb 100644 --- a/doc/roadmap.rst +++ b/doc/roadmap.rst @@ -150,7 +150,7 @@ API and Tutorial development The ability to interpret the neural origin of macroscale MEG/EEG signals in a complex high-dimensional non-linear computational neural model is challenging. A primary goal of HNN is to facilitate this interpretation with a clear API and examples -of use in HNN-core, and interative GUI-based tutorals for all HNN-GUI functionality on our HNN website. +of use in HNN-core, and interactive GUI-based tutorals for all HNN-GUI functionality on our HNN website. Following the process for creating new featuers in HNN, the process for documenting new features will be to first develop them with API and examples of use in HNN-core, followed by integration into the HNN-GUI, with corresponding GUI-based tutorials on the HNN-website. diff --git a/hnn_core/tests/conftest.py b/hnn_core/tests/conftest.py index 61bc75438..f2e200965 100644 --- a/hnn_core/tests/conftest.py +++ b/hnn_core/tests/conftest.py @@ -28,7 +28,7 @@ def pytest_runtest_makereport(item, call): # are skipped because mpi4py is not installed, still continue with # all other tests that do not require mpi4py if call.excinfo is not None and not call.excinfo.typename == "Skipped": - # the test has failed, but was not skiped + # the test has failed, but was not skipped # retrieve the class name of the test cls_name = str(item.cls) diff --git a/hnn_core/tests/test_network.py b/hnn_core/tests/test_network.py index 801180f31..a14da5c37 100644 --- a/hnn_core/tests/test_network.py +++ b/hnn_core/tests/test_network.py @@ -810,7 +810,7 @@ def test_network_connectivity(): pick_connection(**kwargs) # Test removing connections from net.connectivity - # Needs to be updated if number of drives change in preceeding tests + # Needs to be updated if number of drives change in preceding tests net.clear_connectivity() assert len(net.connectivity) == 4 # 2 drives x 2 target cell types net.clear_drives()