diff --git a/agents.ipynb b/agents.ipynb index db42f8d33..7976b12b2 100644 --- a/agents.ipynb +++ b/agents.ipynb @@ -8,7 +8,7 @@ "\n", "An agent, as defined in 2.1 is anything that can perceive its environment through sensors, and act upon that environment through actuators based on its agent program. This can be a dog, robot, or even you. As long as you can perceive the environment and act on it, you are an agent. This notebook will explain how to implement a simple agent, create an environment, and create a program that helps the agent act on the environment based on its percepts.\n", "\n", - "Before moving on, review the Agent and Environment classes in [agents.py](https://github.com/aimacode/aima-python/blob/master/agents.py).\n", + "Before moving on, review the Agent and Environment classes in [agents.py](https://github.com/aimacode/aima-python/blob/master/agents.py).\n", "\n", "Let's begin by importing all the functions from the agents.py module and creating our first agent - a blind dog." ]