Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling #830

Merged
merged 1 commit into from
Jan 16, 2025
Merged
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
2 changes: 1 addition & 1 deletion api/src/client/typescript/mona_dish/CryptoExtensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class ExpiringCrypto implements Crypto {
private lastCall = 0;

/**
* @param timeout timeout in miliseconds until a message is expired
* @param timeout timeout in milliseconds until a message is expired
* @param parentCrypto the embedded decorated crypto algorithm
* @param hashSum hashshum implementation to generate a hash
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2218,7 +2218,7 @@ private Object saveSystemEventListenerClassMap(FacesContext facesContext)

/**
* @param string
* the component id, that should be a vaild one.
* the component id, that should be a valid one.
*/
private void isIdValid(String string)
{
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/jakarta/faces/component/UIData.java
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ public boolean invokeOnComponent(FacesContext context, String clientId, ContextC
try
{
//The conversion is safe, because its already checked on the
//regular expresion
//regular expression
this.setRowIndex(Integer.parseInt(clientRow));

// check, if the row is available
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -528,9 +528,9 @@ public class MyfacesConfig
private static final boolean AUTOCOMPLETE_OFF_VIEW_STATE_DEFAULT = false;

/**
* Set the max time in miliseconds set on the "Expires" header for a resource rendered by
* Set the max time in milliseconds set on the "Expires" header for a resource rendered by
* the default ResourceHandler.
* (default to one week in miliseconds or 604800000)
* (default to one week in milliseconds or 604800000)
*/
@JSFWebConfigParam(since="2.0", defaultValue="604800000", group="resources", tags="performance")
public static final String RESOURCE_MAX_TIME_EXPIRES = "org.apache.myfaces.RESOURCE_MAX_TIME_EXPIRES";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public boolean userAgentNeedsUpdate(FacesContext context)
// If the lastModified date is lower or equal than ifModifiedSince,
// the agent does not need to update.
// Note the lastModified time is set at milisecond precision, but when
// the date is parsed and sent on ifModifiedSince, the exceding miliseconds
// the date is parsed and sent on ifModifiedSince, the exceding milliseconds
// are trimmed. So, we have to compare trimming this from the calculated
// lastModified time.
if ( (lastModified-(lastModified % 1000)) <= ifModifiedSince)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1427,7 +1427,7 @@
<div class="changed_added_2_2">

<p>When used in a <code>&lt;switch&gt;</code> within a flow, if the
expresion returns <code>true</code>, the
expression returns <code>true</code>, the
<code>&lt;from-outcome&gt;</code> sibling element's outcome is used as
the id of the node in the flow graph to which control must be
passed.</p>
Expand Down
Loading