Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ private void checkPatternNameUniqueness() {
/**
* Creates the Start {@link State} of the resulting NFA graph.
*
* @param sinkState the state that Start state should point to (alwyas first state of middle states)
* @param sinkState the state that Start state should point to (always first state of middle states)
* @return created state
*/
@SuppressWarnings("unchecked")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public <S extends F> Pattern<T, S> subtype(final Class<S> subtypeClass) {
* between first and the last event must not be longer than the window time.
*
* @param windowTime Time of the matching window
* @return The same pattenr operator with the new window length
* @return The same pattern operator with the new window length
*/
public Pattern<T, F> within(Time windowTime) {
if (windowTime != null) {
Expand Down