This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-daemon.git
The following commit(s) were added to refs/heads/master by this push: new 5891513 Javadoc 5891513 is described below commit 58915139a87616f3ae40d7f826142cb472c06859 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 21 11:28:35 2024 -0400 Javadoc Use HTML 'em' tag instead of 'i' tag --- src/main/java/org/apache/commons/daemon/Daemon.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/daemon/Daemon.java b/src/main/java/org/apache/commons/daemon/Daemon.java index a2ff8cc..fd2cb0c 100644 --- a/src/main/java/org/apache/commons/daemon/Daemon.java +++ b/src/main/java/org/apache/commons/daemon/Daemon.java @@ -42,12 +42,12 @@ public interface Daemon * <p> * Under certain operating systems (typically UNIX based operating * systems) and if the native invocation framework is configured to do - * so, this method might be called with <i>super-user</i> privileges. + * so, this method might be called with <em>super-user</em> privileges. * </p> * <p> * For example, it might be wise to create {@code ServerSocket} * instances within the scope of this method, and perform all operations - * requiring <i>super-user</i> privileges in the underlying operating + * requiring <em>super-user</em> privileges in the underlying operating * system. * </p> * <p>