summaryrefslogtreecommitdiffstats
path: root/docs/html/training/multiple-threads/create-threadpool.jd
diff options
context:
space:
mode:
Diffstat (limited to 'docs/html/training/multiple-threads/create-threadpool.jd')
-rw-r--r--docs/html/training/multiple-threads/create-threadpool.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/training/multiple-threads/create-threadpool.jd b/docs/html/training/multiple-threads/create-threadpool.jd
index 4a4ddb1..e22afd3 100644
--- a/docs/html/training/multiple-threads/create-threadpool.jd
+++ b/docs/html/training/multiple-threads/create-threadpool.jd
@@ -46,7 +46,7 @@ trainingnavtop=true
<code>synchronized</code> block. This approach will prevent one thread from reading the variable
while another is writing to it. Typically, this situation arises with static variables, but it
also occurs in any object that is only instantiated once. To learn more about this, read the
- <a href="{@docRoot}http://developer.android.com/guide/components/processes-and-threads.html">
+ <a href="{@docRoot}guide/components/processes-and-threads.html">
Processes and Threads</a> API guide.
</p>