You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2016/12/07 19:41:15 UTC

[5/5] jena git commit: Typo in javadoc

Typo in javadoc


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

Branch: refs/heads/master
Commit: fb9c4f9a5b589b2636799db0e17dcb95e376b170
Parents: ebdf799
Author: Andy Seaborne <an...@apache.org>
Authored: Wed Dec 7 19:41:03 2016 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Wed Dec 7 19:41:03 2016 +0000

----------------------------------------------------------------------
 jena-tdb/src/main/java/org/apache/jena/tdb/base/file/Location.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/fb9c4f9a/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/Location.java
----------------------------------------------------------------------
diff --git a/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/Location.java b/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/Location.java
index a012a5c..e920a9e 100644
--- a/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/Location.java
+++ b/jena-tdb/src/main/java/org/apache/jena/tdb/base/file/Location.java
@@ -188,7 +188,7 @@ public class Location {
         return filename ;
     }
 
-    /** Does the location exist (and it a directory, and is accessible) */
+    /** Does the location exist (and is a directory, and is accessible) */
     public boolean exists() {
         File f = new File(getDirectoryPath()) ;
         return f.exists() && f.isDirectory() && f.canRead() ;