From 1c5e0c93b3e06adb9e1e96c6703b3832a9f0589d Mon Sep 17 00:00:00 2001 From: Ankit Mathur Date: Sat, 13 Apr 2019 22:35:21 +0530 Subject: [PATCH] Correcting grammatical errors (#33530) * correcting grammatical mistakes in dynamic programming section --- guide/english/computer-science/dynamic-programming/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/computer-science/dynamic-programming/index.md b/guide/english/computer-science/dynamic-programming/index.md index 2fe75cfe63..8de119d70d 100644 --- a/guide/english/computer-science/dynamic-programming/index.md +++ b/guide/english/computer-science/dynamic-programming/index.md @@ -44,7 +44,7 @@ def fib(n) return lookup[n] } ``` -Caching computed solutions in a lookup table, and query it before go recursion will let the program have a running time of O(N). +Caching computed solutions in a lookup table, and querying it before going for recursion will let the program have a running time of O(N). #### More Information: