This commit is contained in:
Mike Jolley 2013-04-04 17:22:06 +01:00
parent 46139143e2
commit 425002cb5c
1 changed files with 2 additions and 2 deletions

View File

@ -262,12 +262,12 @@ abstract class WC_Email extends WC_Settings_API {
}
/**
* Proxy to parent's get_option and attempty to localize the result using gettext.
* Proxy to parent's get_option and attempt to localize the result using gettext.
*
* @access public
* @return string
*/
function get_option($opt) {
function get_option( $opt ) {
return __( parent::get_option( $opt ) );
}