We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba3783e commit b6987a8Copy full SHA for b6987a8
contrib/pg_trgm/trgm_op.c
@@ -65,7 +65,7 @@ _PG_init(void)
65
{
66
/* Define custom GUC variables. */
67
DefineCustomRealVariable("pg_trgm.similarity_threshold",
68
- "Sets the threshold used by the %% operator.",
+ "Sets the threshold used by the % operator.",
69
"Valid range is 0.0 .. 1.0.",
70
&similarity_threshold,
71
0.3,
@@ -77,7 +77,7 @@ _PG_init(void)
77
NULL,
78
NULL);
79
DefineCustomRealVariable("pg_trgm.word_similarity_threshold",
80
- "Sets the threshold used by the <%% operator.",
+ "Sets the threshold used by the <% operator.",
81
82
&word_similarity_threshold,
83
0.6,
@@ -89,7 +89,7 @@ _PG_init(void)
89
90
91
DefineCustomRealVariable("pg_trgm.strict_word_similarity_threshold",
92
- "Sets the threshold used by the <<%% operator.",
+ "Sets the threshold used by the <<% operator.",
93
94
&strict_word_similarity_threshold,
95
0.5,
0 commit comments