You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by ha...@apache.org on 2022/05/19 21:35:25 UTC

[clerezza] branch master updated: CLEREZZA-1063: Fix code documentation in dataset

This is an automated email from the ASF dual-hosted git repository.

hasan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/clerezza.git


The following commit(s) were added to refs/heads/master by this push:
     new 9114399b CLEREZZA-1063: Fix code documentation in dataset
9114399b is described below

commit 9114399bc23e0df44f0e1dfda2e3907038a53994
Author: Hasan <ha...@apache.org>
AuthorDate: Thu May 19 23:35:06 2022 +0200

    CLEREZZA-1063: Fix code documentation in dataset
---
 dataset/src/main/java/org/apache/clerezza/dataset/package.html      | 4 ++--
 .../java/org/apache/clerezza/dataset/security/TcPermission.java     | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dataset/src/main/java/org/apache/clerezza/dataset/package.html b/dataset/src/main/java/org/apache/clerezza/dataset/package.html
index 5133e90d..3ad0bfcd 100644
--- a/dataset/src/main/java/org/apache/clerezza/dataset/package.html
+++ b/dataset/src/main/java/org/apache/clerezza/dataset/package.html
@@ -26,7 +26,7 @@
 			org.apache.clerezza.ImmutableGraph}S and {@link
 			org.apache.clerezza.Graph}S that may originate from various
 			implementations.</p>
-		<h3>Accessing</h3>
+		<h2>Accessing</h2>
 		<p>
 			If running in a dependency injection system you should get an instance
 			of
@@ -35,7 +35,7 @@
 			<code>TcManager.getInstance</code>
 			.
 		</p>
-		<h3>Adding a provider</h3>
+		<h2>Adding a provider</h2>
 		<p>A provider implements {@link org.apache.clerezza.dataset.WeightedTcProvider}.</p>
 		<p>
 			To work outside a component injection framework it contains a file
diff --git a/dataset/src/main/java/org/apache/clerezza/dataset/security/TcPermission.java b/dataset/src/main/java/org/apache/clerezza/dataset/security/TcPermission.java
index 9ff336e1..6a45cfa2 100644
--- a/dataset/src/main/java/org/apache/clerezza/dataset/security/TcPermission.java
+++ b/dataset/src/main/java/org/apache/clerezza/dataset/security/TcPermission.java
@@ -24,10 +24,10 @@ import java.util.Set;
 import java.util.regex.Pattern;
 
 /**
- * A permission to access <code>Graph<code>s matching a specified 
+ * A permission to access <code>Graph</code>s matching a specified
  * name pattern. A pattern is matched if and only if the pattern is equals
- * to name of the <code>Graph<code> or the pattern ends with "/*" and
- * the name of the <code>Graph<code> starts with the characters
+ * to name of the <code>Graph</code> or the pattern ends with "/*" and
+ * the name of the <code>Graph</code> starts with the characters
  * preceding the '*' in the pattern.
  *
  * @author reto, tsuy