Enable Eclipse Javadoc warnings about malformed syntax

Fix warnings about unmatched {} in inline tags.

Enabling any more than this set of warnings introduces hundreds of
warnings about things like missing @throws tags, which we may want to
fix, but is a lot more work.

Change-Id: Ic671fb600d2e1ba49b7e855158811c6c98b6cda1
This commit is contained in:
Dave Borowitz
2015-06-12 14:44:37 -04:00
committed by David Pursehouse
parent 408f004e21
commit 450b7d5cde
11 changed files with 22 additions and 14 deletions

View File

@@ -32,9 +32,9 @@ import javax.servlet.http.HttpServletResponse;
/**
* Servlet hosting an SSH daemon on another port. During a standard HTTP GET
* request the servlet returns the hostname and port number back to the client
* in the form {@code ${host} ${port}}.
* in the form <code>${host} ${port}</code>.
* <p>
* Use a Git URL such as {@code ssh://${email}@${host}:${port}/${path}},
* Use a Git URL such as <code>ssh://${email}@${host}:${port}/${path}</code>,
* e.g. {@code ssh://sop@google.com@gerrit.com:8010/tools/gerrit.git} to
* access the SSH daemon itself.
* <p>