Index: src/site/docs/tutorials/fetchdata/index.markdown |
diff --git a/src/site/docs/tutorials/fetchdata/index.markdown b/src/site/docs/tutorials/fetchdata/index.markdown |
index 4c3fe8bca70109d0ff7ad468de14ea8c1c6858d5..e03a2242ce2f16dc719ac210670c02544b9c2c47 100644 |
--- a/src/site/docs/tutorials/fetchdata/index.markdown |
+++ b/src/site/docs/tutorials/fetchdata/index.markdown |
@@ -7,8 +7,8 @@ tutorial: |
id: fetchdata |
next: forms/ |
next-title: "Get Input from a Form" |
-prev: polymer-intro/ |
-prev-title: "Define a Custom Element" |
+prev: futures/ |
+prev-title: "Use Future Based APIs" |
Kathy Walrath
2013/12/02 17:36:04
Global:
Future Based APIs -> Future-Based APIs
(
|
--- |
{% capture whats_the_point %} |
@@ -297,7 +297,12 @@ to request the file from the server. |
alt="Use the getString() function to make a request"> |
The getString() method uses a Future object to handle the request. |
-You can use the code above as an idiom |
+A Future is a way to perform potentially time-consuming operations, |
+such as HTTP requests, asynchronously. |
+If you haven't encountered Futures yet, |
+you can learn more about them in |
+[Use Future Based APIs](/docs/tutorials/futures/). |
+Until then, you can use the code above as an idiom |
and provide your own code for the body of the processString() function |
and your own code to handle the error. |
@@ -464,7 +469,12 @@ client and server programs. |
##What Next? |
Kathy Walrath
2013/12/02 17:36:04
Next -> next
|
-The next tutorial, |
+* If you skipped the previous tutorial, |
+[Use Future Based APIs](/docs/tutorials/futures/), |
+we highly recommend that you go back and learn about Futures |
+before going any further. |
+ |
+* The next tutorial, |
[Get Input from a Form](/docs/tutorials/forms/), |
contains a client/server example that |
shows you how to use a form to get data from the user, |