sguill commented on PR #36:
URL: https://github.com/apache/commons-codec/pull/36#issuecomment-5079697906

   > Having a look, I found what I believe to be the[ vanilla version 
](http://aspell.net/metaphone/dmetaph.cpp)of the algorithm from [its 
author](http://aspell.net/metaphone/).
   > 
   > ```
   > case 'K':
   >         if(GetAt(current + 1) == 'K')
   >                 current += 2;
   >         else
   >                 current += 1;
   >         MetaphAdd("K");
   >         break;
   > ```
   > 
   > It doesn't appear to do the additional check to handle 'c' to me. Is this 
an improvement outside of the official algorithm or is there a source for this 
change?
   
   Yes, this is an improvement outside of the official algorithm, there is no 
source for this change.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to