Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
codeconsole committed Jan 23, 2024
1 parent c3b91ed commit a4192fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public void doFilter(ServletRequest servletRequest, ServletResponse servletRespo

} catch (IllegalStateException e) {
// Some containers (such as WebLogic) throw an IllegalStateException when an error page is served.
// It may be ok to ignore this. However, for safety it is propegated if possible.
// It may be ok to ignore this. However, for safety it is propagated if possible.
if (!containerTweaks.shouldIgnoreIllegalStateExceptionOnErrorPage()) {
throw e;
}
Expand Down Expand Up @@ -195,7 +195,7 @@ public void preCommit() {
responseBuffer.preCommit();
}

// If no decoratoes applied, and we have some buffered content, write the original.
// If no decorators applied, and we have some buffered content, write the original.
if (buffer != null && !processed) {
writeOriginal(response, buffer, responseBuffer);
}
Expand Down

0 comments on commit a4192fb

Please sign in to comment.