From 2f3cb405e8c988c1d1c8ff9af9b4e5f6df9cc173 Mon Sep 17 00:00:00 2001 From: Anastasia Kozaeva Date: Fri, 3 Jun 2016 10:52:19 +0300 Subject: [PATCH] Fix typo in 'Error Handling' section closes #1592 Remove duplicate 'to' --- public/docs/ts/latest/tutorial/toh-pt6.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt6.jade b/public/docs/ts/latest/tutorial/toh-pt6.jade index fb0298e43c..f7758c4581 100644 --- a/public/docs/ts/latest/tutorial/toh-pt6.jade +++ b/public/docs/ts/latest/tutorial/toh-pt6.jade @@ -159,7 +159,7 @@ code-example(format="." language="bash"). In this demo service we log the error to the console; we should do better in real life. We've also decided to return a user friendly form of the error to - to the caller in a rejected promise so that the caller can display a proper error message to the user. + the caller in a rejected promise so that the caller can display a proper error message to the user. ### Promises are Promises Although we made significant *internal* changes to `getHeroes()`, the public signature did not change.