Browse Source

CPP: Comment fix, including small fix to sample code.

pull/567/head
Lara Scheidegger 14 years ago
committed by Mihaela Rosca
parent
commit
79ebb6beba
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      cpp/src/phonenumbers/phonenumberutil.h

+ 5
- 5
cpp/src/phonenumbers/phonenumberutil.h View File

@ -161,7 +161,7 @@ class PhoneNumberUtil : public Singleton<PhoneNumberUtil> {
// DEFAULT_REGIONS_.
//
// The PhoneNumberUtil is implemented as a singleton. Therefore, calling
// getInstance multiple times will only result in one instance being created.
// GetInstance multiple times will only result in one instance being created.
#ifdef USE_GOOGLE_BASE
static PhoneNumberUtil* GetInstance();
#endif
@ -194,7 +194,7 @@ class PhoneNumberUtil : public Singleton<PhoneNumberUtil> {
// a way that the resultant subscriber number should be diallable, at least on
// some devices. An example of how this could be used:
//
// const PhoneNumberUtil& phone_util(PhoneNumberUtil::GetInstance());
// const PhoneNumberUtil& phone_util(*PhoneNumberUtil::GetInstance());
// PhoneNumber number;
// phone_util.Parse("16502530000", "US", &number);
// string national_significant_number;
@ -213,8 +213,8 @@ class PhoneNumberUtil : public Singleton<PhoneNumberUtil> {
// subscriber_number = national_significant_number;
// }
//
// N.B.: area code is a very ambiguous concept, so the I18N team generally
// recommends against using it for most purposes, but recommends using the
// N.B.: area code is a very ambiguous concept, so the authors generally
// recommend against using it for most purposes, but recommend using the
// more general national_number instead. Read the following carefully before
// deciding to use this method:
//
@ -237,7 +237,7 @@ class PhoneNumberUtil : public Singleton<PhoneNumberUtil> {
// there is a subscriber number part that follows. An example of how this
// could be used:
//
// const PhoneNumberUtil& phone_util(PhoneNumberUtil::GetInstance());
// const PhoneNumberUtil& phone_util(*PhoneNumberUtil::GetInstance());
// PhoneNumber number;
// phone_util.Parse("16502530000", "US", &number);
// string national_significant_number;


Loading…
Cancel
Save