about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-11-11 04:27:21 -0800
committerBrian Anderson <banderson@mozilla.com>2013-11-11 04:29:09 -0800
commite34834375db649a16d45c902f7f0209a44c7e42e (patch)
tree533fb45207ba23ba9fdbc98b0a79f3e8cd944e28
parenta594a999fbccf04710c9dfea3ef3d231c14e1bd1 (diff)
doc: Don't mention TLS in condition tutorial
-rw-r--r--doc/tutorial-conditions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial-conditions.md b/doc/tutorial-conditions.md
index 056d967ae6c..a6a8cfec745 100644
--- a/doc/tutorial-conditions.md
+++ b/doc/tutorial-conditions.md
@@ -351,7 +351,7 @@ The `raise` method maps a value of the condition's input type to its output type
 The input type should therefore convey all relevant information to the condition handler.
 The output type should convey all relevant information _for continuing execution at the site of error_.
 When the error site raises a condition handler,
-the `Condition::raise` method searches task-local storage (TLS) for the innermost installed _handler_,
+the `Condition::raise` method searches for the innermost installed task-local condition _handler_,
 and if any such handler is found, calls it with the provided input value.
 If no handler is found, `Condition::raise` will fail the task with an appropriate error message.