CPP: Comment fix, including small fix to sample code.
authorlararennie@google.com <lararennie@google.com@ee073f10-1060-11df-b6a4-87a95322a99c>
Fri, 29 Jun 2012 14:25:30 +0000 (14:25 +0000)
committerlararennie@google.com <lararennie@google.com@ee073f10-1060-11df-b6a4-87a95322a99c>
Fri, 29 Jun 2012 14:25:30 +0000 (14:25 +0000)
git-svn-id: http://libphonenumber.googlecode.com/svn/trunk@479 ee073f10-1060-11df-b6a4-87a95322a99c

cpp/src/phonenumbers/phonenumberutil.h

index d21542a..3aeb1fb 100644 (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;