Fix javadoc

This commit is contained in:
Abbas Abou Daya 2018-05-27 04:20:04 -04:00
parent 714857555d
commit afebcaeb76

View File

@ -40,9 +40,9 @@ public interface DBContext extends Closeable {
<T> Set<T> getSet(String name); <T> Set<T> getSet(String name);
/** /**
* @param name the unique name of the {@link Set} * @param name the unique name of the {@link Var}
* @param <T> the type that the Set holds * @param <T> the type that the variable holds
* @return the Set with the specified name * @return the variable with the specified name
*/ */
<T> Var<T> getVar(String name); <T> Var<T> getVar(String name);