[folks] phone-details: move a comment to make valadoc happy



commit e7171a6dae78d8c3efa522f17fe2a889fb9d4f5f
Author: Alban Crequy <alban crequy collabora co uk>
Date:   Mon Apr 11 14:37:03 2011 +0100

    phone-details: move a comment to make valadoc happy

 folks/phone-details.vala |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/folks/phone-details.vala b/folks/phone-details.vala
index c4e68c3..6226b7a 100644
--- a/folks/phone-details.vala
+++ b/folks/phone-details.vala
@@ -46,7 +46,6 @@ public interface Folks.PhoneDetails : Object
 
   /**
    * Normalise and compare two phone numbers.
-   * Based on: http://blog.barisione.org/2010-06/handling-phone-numbers/
    * @since UNRELEASED
    */
   public static bool numbers_equal (string number1, string number2)
@@ -56,7 +55,8 @@ public interface Folks.PhoneDetails : Object
       var n2 =
         PhoneDetails.drop_extension (PhoneDetails.normalise_number (number2));
 
-     if (n1.length >= 7 && n2.length >= 7)
+      /* Based on http://blog.barisione.org/2010-06/handling-phone-numbers/ */
+      if (n1.length >= 7 && n2.length >= 7)
         {
           var n1_reduced = n1.slice (-7, n1.length);
           var n2_reduced = n2.slice (-7, n2.length);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]