Fix thread-safety note

This commit is contained in:
Jakub Stasiak 2013-09-20 00:51:39 +01:00
parent 8c317f7e0e
commit ea354b7252
1 changed files with 6 additions and 4 deletions

View File

@ -1,12 +1,14 @@
Injector API reference
======================
.. notice:: Unless specified otherwise, instance methods are **not** thread safe.
.. note::
Unless specified otherwise, instance methods are **not** thread safe.
The following functions are thread safe:
- :meth:`Injector.get`
- injection provided by :func:`inject` decorator (please note, however, that it doesn't say anything about decorated function thread safety)
* :meth:`Injector.get`
* injection provided by :func:`inject` decorator (please note, however, that it doesn't say anything about decorated function thread safety)
.. automodule:: injector