From e7171a6dae78d8c3efa522f17fe2a889fb9d4f5f Mon Sep 17 00:00:00 2001 From: Alban Crequy Date: Mon, 11 Apr 2011 14:37:03 +0100 Subject: [PATCH] phone-details: move a comment to make valadoc happy --- folks/phone-details.vala | 4 ++-- 1 file 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); -- 2.7.4