[#1036] API typo in WindowRowsStep.rowsBetweenUnboundedFollwing()

This commit is contained in:
Lukas Eder 2012-01-06 10:14:16 +00:00
parent b292033de5
commit 28b29bc769
2 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ public interface WindowRowsStep<T> extends WindowFinalStep<T> {
* the window function.
*/
@Support({ DB2, POSTGRES, ORACLE, SYBASE })
WindowRowsAndStep<T> rowsBetweenUnboundedFollwing();
WindowRowsAndStep<T> rowsBetweenUnboundedFollowing();
/**
* Add a <code>ROWS BETWEEN [number] FOLLOWING ...</code> frame clause to

View File

@ -346,7 +346,7 @@ implements
}
@Override
public final WindowFunction<T> rowsBetweenUnboundedFollwing() {
public final WindowFunction<T> rowsBetweenUnboundedFollowing() {
rowsUnboundedFollowing();
return this;
}