Skip to content

Commit

Permalink
Fixed @returns in comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
docwhat committed Feb 18, 2011
1 parent 1d385a0 commit 64835c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/docwhat/iated/AppState.java
Expand Up @@ -229,7 +229,7 @@ public EditSession getEditSession(String url, String id, String extension) {
* Gets an edit session.
*
* @param token The token of the session.
* @returns An EditSession or null.
* @return An EditSession or null.
*/
public EditSession getEditSession(String token) {
return EditSession.getSession(token);
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/docwhat/iated/EditSession.java
Expand Up @@ -76,7 +76,7 @@ static EditSession getSession(String token) {

/**
*
* @returns true if an edit session with these parameters exists.
* @return true if an edit session with these parameters exists.
*/
public boolean exists() {
return false;
Expand All @@ -100,7 +100,7 @@ public boolean edit(String text) {

/**
*
* @returns the token for this session.
* @return the token for this session.
*/
public String getToken() {
//TODO This needs to be stored or fetched from the db.
Expand Down

0 comments on commit 64835c2

Please sign in to comment.