Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JavaDoc improvements on RocksJava #344

Merged
merged 2 commits into from
Oct 13, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Minor adjustment to prevent two warnings
  • Loading branch information
fyrz committed Oct 12, 2014
commit 16d2ebdbcf59438093b4493e7dd3212bc04f51fd
4 changes: 2 additions & 2 deletions java/org/rocksdb/RocksEnv.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class RocksEnv extends RocksObject {
* <p>Returns the default environment suitable for the current operating
* system.</p>
*
* <p>The result of {@see #getDefault()} is a singleton whose ownership
* <p>The result of {@code getDefault()} is a singleton whose ownership
* belongs to rocksdb c++. As a result, the returned RocksEnv will not
* have the ownership of its c++ resource, and calling its dispose()
* will be no-op.</p>
Expand Down Expand Up @@ -79,7 +79,7 @@ public int getThreadPoolQueueLen(int poolID) {
* <p>Note that the ownership of the input handle
* belongs to the caller, and the newly created RocksEnv will not take
* the ownership of the input handle. As a result, calling
* {@see #dispose()} of the created RocksEnv will be no-op.</p>
* {@code dispose()} of the created RocksEnv will be no-op.</p>
*/
RocksEnv(long handle) {
super();
Expand Down