Skip to content

Commit

Permalink
Fixes JavaDoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
botic committed Dec 19, 2014
1 parent b7b0259 commit 068721a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/org/ringojs/engine/ReloadableScript.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/**
* This class represents a JavaScript Resource.
*
* @author Hannes Wallnoefer <[email protected]>
* @author Hannes Wallnoefer, [email protected]
*/
public class ReloadableScript {

Expand Down
4 changes: 2 additions & 2 deletions src/org/ringojs/engine/RhinoEngine.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
* This class provides methods to create JavaScript objects
* from JavaScript files.
*
* @author Hannes Wallnoefer <[email protected]>
* @author Hannes Wallnoefer, [email protected]
*/
public class RhinoEngine implements ScopeProvider {

Expand Down Expand Up @@ -509,7 +509,7 @@ public ReloadableScript getScript(String moduleName, Repository localPath)
* and the first term resolves to a package directory, the remaining part
* of the module id is resolved against the "lib" directory of the package.
*
* @link http://nodejs.org/docs/v0.4.4/api/modules.html#folders_as_Modules
* @see <a href="http://nodejs.org/docs/v0.4.4/api/modules.html#folders_as_Modules">NodeJS Modules</a>
* @param moduleName the name of the package to load
* @param localPath the path of the resource issuing this call
* @return the location of the package's main module
Expand Down
2 changes: 1 addition & 1 deletion src/org/ringojs/repository/AbstractRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ protected String[] resolve(String path, boolean absolute) {
/**
* Get a resource contained in this repository identified by the given local name.
* If the name can't be resolved to a resource, a resource object is returned
* for which {@link Resource exists()} returns <code>false<code>.
* for which {@link Resource exists()} returns <code>false</code>.
*/
public synchronized Resource getResource(String subpath) throws IOException {
String[] list = resolve(subpath, false);
Expand Down
2 changes: 1 addition & 1 deletion src/org/ringojs/wrappers/Storable.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public String getClassName() {
* <tt>Boolean.TRUE</tt> if this object is equivalent to <tt>value</tt>,
* <tt>Boolean.FALSE</tt> if this object is not equivalent to
* <tt>value</tt>.
* <p/>
*
* The default implementation returns Boolean.TRUE
* if <tt>this == value</tt> or {@link org.mozilla.javascript.Scriptable#NOT_FOUND} otherwise.
* It indicates that by default custom equality is available only if
Expand Down

0 comments on commit 068721a

Please sign in to comment.