Commit 025a06c4 authored by timeless%mozdev.org's avatar timeless%mozdev.org

Bug 383595 "allows to" isn't correct

r=mkanat a=mkanat
parent a1d40e5a
...@@ -190,10 +190,10 @@ sub sql_position { ...@@ -190,10 +190,10 @@ sub sql_position {
sub sql_group_by { sub sql_group_by {
my ($self, $needed_columns, $optional_columns) = @_; my ($self, $needed_columns, $optional_columns) = @_;
# MySQL allows to specify all columns as ANSI SQL requires, but also # MySQL allows you to specify the minimal subset of columns to get
# allow you to specify just minimal subset to get unique result. # a unique result. While it does allow specifying all columns as
# According to MySQL documentation, the less columns you specify # ANSI SQL requires, according to MySQL documentation, the fewer
# the faster the query runs. # columns you specify, the faster the query runs.
return "GROUP BY $needed_columns"; return "GROUP BY $needed_columns";
} }
......
...@@ -202,7 +202,7 @@ ...@@ -202,7 +202,7 @@
</term> </term>
<listitem> <listitem>
<para> <para>
This allows to define specific users that will This allows you to define specific users who will
receive notification each time a new bug in entered, or when receive notification each time a new bug in entered, or when
an existing bug changes, according to the normal groupset an existing bug changes, according to the normal groupset
permissions. It may be useful for sending notifications to a permissions. It may be useful for sending notifications to a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment