Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite9605a0

Browse files
committed
Even more duplicate word removal, in the spirit of the season
1 parent0038110 commite9605a0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

‎contrib/fuzzystrmatch/levenshtein.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ levenshtein_internal(text *s, text *t,
349349
* remaining portions of the strings are of equal length. There
350350
* are (n - 1) characters in the target string, of which j have
351351
* been transformed. There are (m - 1) characters in the source
352-
* string, so we want to find the value for zp wherewhere(n - 1)
353-
*- j =(m - 1) - zp.
352+
* string, so we want to find the value for zp where (n - 1) - j =
353+
* (m - 1) - zp.
354354
*/
355355
intzp=j- (n-m);
356356

‎contrib/pgcrypto/crypt-md5.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ char *
3434
px_crypt_md5(constchar*pw,constchar*salt,char*passwd,unsigneddstlen)
3535
{
3636
staticchar*magic="$1$";/* This string is magic for this algorithm.
37-
* Having it this way, we can getgetbetter
37+
* Having it this way, we can get better
3838
* later on */
3939
staticchar*p;
4040
staticconstchar*sp,

‎src/backend/tsearch/wparser_def.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2508,7 +2508,7 @@ prsd_headline(PG_FUNCTION_ARGS)
25082508
List*prsoptions= (List*)PG_GETARG_POINTER(1);
25092509
TSQueryquery=PG_GETARG_TSQUERY(2);
25102510

2511-
/* from opt + start andand tag */
2511+
/* from opt + start andend tag */
25122512
intmin_words=15;
25132513
intmax_words=35;
25142514
intshortword=3;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp