Skip to content

Commit

Permalink
Merge pull request #145 from szepeviktor/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
jeffpaul authored Dec 1, 2023
2 parents 1ef974f + c3d8d82 commit 9d8a18b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ All notable changes to this project will be documented in this file, per [the Ke

### Added

- If plugin updates via dashboard are disabled, still show notifcation that an update exists
- If plugin updates via dashboard are disabled, still show notification that an update exists

### Removed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ The Activity Log tracks key actions taken by logged in users and stores them in
#### Logged Actions

- `profile_update` Runs when a user profile is updated. Example log message: "User 1 profile updated."
- `set_user_role` Runs when a user's role has changed. Example log message: "User 1 role changed from editor to administator."
- `set_user_role` Runs when a user's role has changed. Example log message: "User 1 role changed from editor to administrator."
- `updated_user_meta` Runs when certain user metadata has changed. Example log message: "User 1 meta updated. Key: nickname."
- `user_register` Runs when a new user is registered. Example log message: "User 1 registered."
- `deleted_user` Runs when a user is deleted. Example log message: "User 1 deleted."
Expand Down
2 changes: 1 addition & 1 deletion includes/classes/Authentication/Usernames.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function prevent_common_username( $user, $username ) {
if ( ! in_array( $tld, $test_tlds, true ) && in_array( strtolower( trim( $username ) ), $this->reserved_usernames(), true ) ) {
return new \WP_Error(
'Auth Error',
__( 'Please have an administor change your username in order to meet current security measures.', 'tenup' )
__( 'Please have an administrator change your username in order to meet current security measures.', 'tenup' )
);
}

Expand Down
2 changes: 1 addition & 1 deletion includes/classes/SupportMonitor/Debug.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* 10up suppport monitor debugger. This can be enabled by setting the following in wp-config.php:
* 10up support monitor debugger. This can be enabled by setting the following in wp-config.php:
* define( 'SUPPORT_MONITOR_DEBUG', true );
*
* @since 1.7
Expand Down
4 changes: 2 additions & 2 deletions includes/classes/SupportMonitor/Monitor.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* 10up suppport monitor code. This module lets us gather non-PII info from sites running
* 10up support monitor code. This module lets us gather non-PII info from sites running
* the plugin e.g. plugin versions, WP version, etc.
*
* @since 1.7
Expand Down Expand Up @@ -394,7 +394,7 @@ public function send_message( $data, $type = 'notice', $group = 'message' ) {
}

/**
* Check if loggin is enabled
* Check if logging is enabled
*
* @return boolean
*/
Expand Down

0 comments on commit 9d8a18b

Please sign in to comment.