From c03839b4aee5899e3bb6dd8da928e4275484f398 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 4 Jan 2013 14:48:53 -0800 Subject: [PATCH] doc improvement --- .../src/main/java/hudson/model/AdministrativeMonitor.java | 8 ++++---- core/src/main/java/jenkins/model/Jenkins.java | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/main/java/hudson/model/AdministrativeMonitor.java b/core/src/main/java/hudson/model/AdministrativeMonitor.java index 2ce43ff4bc..8f9082d856 100644 --- a/core/src/main/java/hudson/model/AdministrativeMonitor.java +++ b/core/src/main/java/hudson/model/AdministrativeMonitor.java @@ -38,16 +38,16 @@ import org.kohsuke.stapler.StaplerRequest; import org.kohsuke.stapler.StaplerResponse; /** - * Checks the health of a subsystem of Hudson and if there's something + * Checks the health of a subsystem of Jenkins and if there's something * that requires administrator's attention, notify the administrator. * *

How to implement?

*

* Plugins who wish to contribute such notifications can implement this - * class and put {@link Extension} on it to register it to Hudson. + * class and put {@link Extension} on it to register it to Jenkins. * *

- * Once installed, it's the implementor's responsibility to perform + * Once installed, it's the implementer's responsibility to perform * monitoring and activate/deactivate the monitor accordingly. Sometimes * this can be done by updating a flag from code (see {@link SCMTrigger} * for one such example), while other times it's more convenient to do @@ -63,7 +63,7 @@ import org.kohsuke.stapler.StaplerResponse; *

* If {@link #isActivated()} returns true, Hudson will use the message.jelly * view of this object to render the warning text. This happens in the - * http://SERVER/hudson/manage page. This view should typically render + * http://SERVER/jenkins/manage page. This view should typically render * a DIV box with class='error' or class='warning' with a human-readable text * inside it. It often also contains a link to a page that provides more details * about the problem. diff --git a/core/src/main/java/jenkins/model/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index b4c2087ea7..9423ae3cff 100755 --- a/core/src/main/java/jenkins/model/Jenkins.java +++ b/core/src/main/java/jenkins/model/Jenkins.java @@ -1485,7 +1485,7 @@ public class Jenkins extends AbstractCIBase implements ModifiableTopLevelItemGro } /** - * Returns true if the current running Hudson is upgraded from a version earlier than the specified version. + * Returns true if the current running Jenkins is upgraded from a version earlier than the specified version. * *

* This method continues to return true until the system configuration is saved, at which point -- GitLab