From 47d208d4653b2afd687ee46adeb4240483d38fcb Mon Sep 17 00:00:00 2001 From: Alvaro Lopez Garcia Date: Fri, 10 Jun 2016 12:41:52 +0200 Subject: [PATCH] Fix typo --- pointers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pointers.rst b/pointers.rst index 81d79b3..a2d06a1 100644 --- a/pointers.rst +++ b/pointers.rst @@ -174,7 +174,7 @@ Since we can access variables, assign values to them using only their names, one might wonder why and how pointers are useful. This is a very legitimate question, and you'll see the answer is quite simple. -Suppose that your program as it runs needs some to store some results in some +Suppose that your program as it runs needs to store some results in some new variables not already declared. How would it do that? You'll say: I'll prepare some variables just in case. But wait, what if the number of new variables differs on each execution of your program?