Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
groogna ->
groonga
    ^^

    $ sed -i -s -e '1,$ s/groogna/groonga/g' doc/**/*.rst

Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
  • Loading branch information
okkez committed Apr 6, 2018
1 parent 1a81014 commit fcccbde
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions doc/source/news/1.3.x.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Improvements
* Enabled warning flags on C and C++.
* Supported ``--with-libevent`` without value configure option.
* ``grn_table_get()`` supported grn_db. [#1242]
* [rpm] Removed needless groogna-munin-plugins dependency
* [rpm] Removed needless groonga-munin-plugins dependency
from groonga-server. [#1251] [Suggested by Masaharu IWAI]
* [rpm] Removed needless groogna-doc dependency
* [rpm] Removed needless groonga-doc dependency
from groonga. [#1251] [Suggested by Masaharu IWAI]
* [dat] Supported repair by ``grn_dat_repair()``.
* ``grn_table_at()`` supported grn_db.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/news/2.x.rst
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ Release 2.0.2 - 2012-04-29
.. caution::

The package sign key is changed since this release. Import the new
package sign key before updating groogna packages.
package sign key before updating groonga packages.

Debian/Ubuntu::

Expand Down
4 changes: 2 additions & 2 deletions doc/source/reference/commands/select.rst
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ a fulltext search form in a Web page. A query text should be formatted
in :doc:`/reference/grn_expr/query_syntax`. The syntax is similar to common search
form like Google's search form. For example, ``word1 word2`` means
that groonga searches records that contain both ``word1`` and
``word2``. ``word1 OR word2`` means that groogna searches records that
``word2``. ``word1 OR word2`` means that groonga searches records that
contain either ``word1`` or ``word2``.

Here is a simple logical and search example.
Expand Down Expand Up @@ -701,7 +701,7 @@ is used only when no records are matched.
The default threshold can be customized by one of the followings.

* ``--with-match-escalation-threshold`` option of configure
* ``--match-escalation-threshold`` option of groogna command
* ``--match-escalation-threshold`` option of groonga command
* ``match-escalation-threshold`` configuration item in configuration
file

Expand Down
4 changes: 2 additions & 2 deletions doc/source/reference/executables/groonga-suggest-httpd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ The ``groonga-suggest-learner`` process opens two endpoints at
``1234`` port and ``1235`` port:

* ``1234`` port: Endpoint that accepts user input data from
``groogna-suggest-httpd``
``groonga-suggest-httpd``
* ``1235`` port: Endpoint that sends learned suggestion data to
``groogna-suggest-httpd``
``groonga-suggest-httpd``

Launch ``groonga-suggest-httpd``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion doc/source/reference/grn_expr/query_syntax.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Query syntax is a syntax to specify search condition for common Web
search form. It is similar to the syntax of Google's search form. For
example, ``word1 word2`` means that groonga searches records that
contain both ``word1`` and ``word2``. ``word1 OR word2`` means that
groogna searches records that contain either ``word1`` or ``word2``.
groonga searches records that contain either ``word1`` or ``word2``.

Query syntax consists of ``conditional expression``, ``combind
expression`` and ``assignment expression``. Nomrally ``assignment
Expand Down
4 changes: 2 additions & 2 deletions doc/source/server/http/comparison.rst
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ version 2 comamnds under ``/api/2/``::

location /api/1/ {
groonga on;
groogna_default_command_version 1;
groonga_default_command_version 1;
}

location /api/2/ {
groonga on;
groogna_default_command_version 2;
groonga_default_command_version 2;
}
}
}
Expand Down

0 comments on commit fcccbde

Please sign in to comment.