You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by jo...@apache.org on 2016/07/16 12:49:56 UTC

deltaspike git commit: Minor doc fix, typo in annotation name.

Repository: deltaspike
Updated Branches:
  refs/heads/master af0c7faa0 -> 54b57e1e8


Minor doc fix, typo in annotation name.

This closes #48


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/54b57e1e
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/54b57e1e
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/54b57e1e

Branch: refs/heads/master
Commit: 54b57e1e8ff08ddf31e636b711e9a70a509d5e3e
Parents: af0c7fa
Author: John D. Ament <jo...@apache.org>
Authored: Sat Jul 16 08:49:47 2016 -0400
Committer: John D. Ament <jo...@apache.org>
Committed: Sat Jul 16 08:49:47 2016 -0400

----------------------------------------------------------------------
 documentation/src/main/asciidoc/core.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/54b57e1e/documentation/src/main/asciidoc/core.adoc
----------------------------------------------------------------------
diff --git a/documentation/src/main/asciidoc/core.adoc b/documentation/src/main/asciidoc/core.adoc
index 346c43c..6d43d0d 100644
--- a/documentation/src/main/asciidoc/core.adoc
+++ b/documentation/src/main/asciidoc/core.adoc
@@ -1174,7 +1174,7 @@ deactivate.org.apache.deltaspike.security.impl.extension.SecurityExtension=true
 
 DeltaSpike provides support for executing code in an asynchronous manner.  The behavior is implemented as three different interceptors for your beans.
 
-- `@Futreable` - Designed for bean methods that return `Future's` of some form.  The method call will automatically be submitted to an `ExecutorService`
+- `@Futureable` - Designed for bean methods that return `Future's` of some form.  The method call will automatically be submitted to an `ExecutorService`
 - `@Locked` - Ability to prevent concurrent access to a method based on its usage of reads/writes.
 - `@Throttled` - Ability to limit how frequently a method can be invoked.