From c99ba6cd28a518dc07cab765acac9b69ac6fe36b Mon Sep 17 00:00:00 2001 From: Thomas King Date: Sun, 10 Jan 2021 17:41:05 -0500 Subject: [PATCH] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 26a587e..4ec35f4 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Installing PySNN requires a Python version of 3.6 or higher, Python 2 is not sup ## __Network Structure__ -Intention is to mirror most of the structure of PyTorch framework. As an example, the followig piece of code shows how much a Spiking Neural Network definition in PySNN looks like a network definition in PyTorch. The network's graph is cyclical, due to the feedback connection from the output neurons to the hidden neurons. +Intention is to mirror most of the structure of PyTorch framework. As an example, the following piece of code shows how much a Spiking Neural Network definition in PySNN looks like a network definition in PyTorch. The network's graph is cyclical, due to the feedback connection from the output neurons to the hidden neurons. ```python class Network(SNNNetwork):