Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton committed Jan 13, 2025
1 parent 86735c5 commit f134782
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
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

0 comments on commit f134782

Please sign in to comment.