Fix a couple spelling mistakes in comments and remove redundant statement terminator

This commit is contained in:
Zach Copley 2011-01-19 15:52:18 -08:00
parent f1820459a8
commit 114d9ebf28
3 changed files with 3 additions and 3 deletions

View File

@ -975,7 +975,7 @@ class User extends Memcached_DataObject
} }
/* /*
* Get a list of OAuth client application that have access to this * Get a list of OAuth client applications that have access to this
* user's account. * user's account.
*/ */
function getConnectedApps($offset = 0, $limit = null) function getConnectedApps($offset = 0, $limit = null)

View File

@ -337,7 +337,7 @@ class ApiAuthAction extends ApiAction
} }
/** /**
* Log an API authentication failer. Collect the proxy and IP * Log an API authentication failure. Collect the proxy and IP
* and log them * and log them
* *
* @param string $logMsg additional log message * @param string $logMsg additional log message

View File

@ -229,7 +229,7 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore
// insert a new Oauth_application_user record w/access token // insert a new Oauth_application_user record w/access token
$appUser = new Oauth_application_user(); $appUser = new Oauth_application_user();
$appUser->profile_id = $tokenAssoc->profile_id;; $appUser->profile_id = $tokenAssoc->profile_id;
$appUser->application_id = $app->id; $appUser->application_id = $app->id;
$appUser->access_type = $app->access_type; $appUser->access_type = $app->access_type;
$appUser->token = $at->tok; $appUser->token = $at->tok;