You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commonsrdf.apache.org by st...@apache.org on 2015/05/08 13:04:55 UTC

[4/4] incubator-commonsrdf git commit: COMMONSRDF-20 clarify ServiceLoader text

COMMONSRDF-20 clarify ServiceLoader text


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/d44aee6f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/d44aee6f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/d44aee6f

Branch: refs/heads/master
Commit: d44aee6f7593676dfb39da41ef8f4ab5a350e94a
Parents: ee8af7a
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Fri May 8 12:04:41 2015 +0100
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Fri May 8 12:04:41 2015 +0100

----------------------------------------------------------------------
 src/site/markdown/userguide.md.vm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/d44aee6f/src/site/markdown/userguide.md.vm
----------------------------------------------------------------------
diff --git a/src/site/markdown/userguide.md.vm b/src/site/markdown/userguide.md.vm
index b6a8a58..a734e50 100644
--- a/src/site/markdown/userguide.md.vm
+++ b/src/site/markdown/userguide.md.vm
@@ -148,9 +148,10 @@ import org.apache.commons.rdf.simple.SimpleRDFTermFactory;
 RDFTermFactory factory = new SimpleRDFTermFactory();
 ```
 
-If you don't want to depend up the concrete implementation you can use a
+If you don't want to depend on instnatiating a concrete implementation,
+you can alternatively use the 
 [ServiceLoader](http://docs.oracle.com/javase/8/docs/api/java/util/ServiceLoader.html)
-to lookup any implementations found on the classpath:
+to lookup any `RDFTermFactory` implementations found on the classpath:
 
 ```java
 import java.util.Iterator;