minor change, correct javadoc spell

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18341 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2009-12-29 08:08:58 +00:00
parent 018d3911cd
commit 1d125b21aa
1 changed files with 3 additions and 3 deletions

View File

@ -111,7 +111,7 @@ public interface Session extends Serializable {
/**
* Force this session to flush. Must be called at the end of a
* unit of work, before commiting the transaction and closing the
* unit of work, before committing the transaction and closing the
* session (depending on {@link #setFlushMode flush-mode},
* {@link Transaction#commit()} calls this method).
* <p/>
@ -816,7 +816,7 @@ public interface Session extends Serializable {
* Enable the named filter for this current session.
*
* @param filterName The name of the filter to be enabled.
* @return The Filter instance representing the enabled fiter.
* @return The Filter instance representing the enabled filter.
*/
public Filter enableFilter(String filterName);
@ -824,7 +824,7 @@ public interface Session extends Serializable {
* Retrieve a currently enabled filter by name.
*
* @param filterName The name of the filter to be retrieved.
* @return The Filter instance representing the enabled fiter.
* @return The Filter instance representing the enabled filter.
*/
public Filter getEnabledFilter(String filterName);