Fix typos in comments

This commit is contained in:
Jeremy Pry 2023-10-30 21:22:54 -05:00 committed by Justin Palmer
parent 62d05d9ab8
commit de88fd19a7
No known key found for this signature in database
GPG Key ID: ACAB7C35AA2577AF
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ abstract class AbstractInterfaceServiceProvider extends AbstractServiceProvider
/**
* Register a class in the container and add tags for all the interfaces it implements.
*
* This also updates the `$this->provides` property with the interfaces provided by the class, ane ensures
* This also updates the `$this->provides` property with the interfaces provided by the class, and ensures
* that the property doesn't contain duplicates.
*
* @since x.x.x

View File

@ -107,7 +107,7 @@ trait SourceAttributionMeta {
// Remove leading and trailing underscores.
$prefix = trim( $prefix, '_' );
// Ensure the prfix ends with _, and set the prefix.
// Ensure the prefix ends with _, and set the prefix.
$this->field_prefix = "{$prefix}_";
}