Edited messages, made them correct English and fixed spelling

pull/40/head
Sunnywout 2012-05-11 21:20:32 +03:00
parent 0c3fdaa921
commit 47abf86273
1 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ namespace gr
} }
catch ( std::runtime_error& e ) catch ( std::runtime_error& e )
{ {
throw ConfigError( std::string("cannot open config file ") + e.what() ) ; throw ConfigError( std::string("Cannot open config file ") + e.what() ) ;
} }
} }
@ -95,13 +95,13 @@ int main( int argc, char **argv )
{ {
std::cout std::cout
<< "-----------------------\n" << "-----------------------\n"
<< "Please go to this URL and get an authenication code:\n\n" << "Please go to this URL and get an authentication code:\n\n"
<< OAuth2::MakeAuthURL( client_id ) << OAuth2::MakeAuthURL( client_id )
<< std::endl ; << std::endl ;
std::cout std::cout
<< "\n-----------------------\n" << "\n-----------------------\n"
<< "Please input the authenication code here" << std::endl ; << "Please input the authentication code here: " << std::endl ;
std::string code ; std::string code ;
std::cin >> code ; std::cin >> code ;