[Groonga-commit] groonga/groonga at ec7faff [master] doc: remove "()"

Back to archive index

Kouhei Sutou null+****@clear*****
Wed Mar 30 21:54:38 JST 2016


Kouhei Sutou	2016-03-30 21:54:38 +0900 (Wed, 30 Mar 2016)

  New Revision: ec7faff221f0912b3aead2ee0ccefb6498b1755a
  https://github.com/groonga/groonga/commit/ec7faff221f0912b3aead2ee0ccefb6498b1755a

  Message:
    doc: remove "()"

  Modified files:
    doc/locale/ja/LC_MESSAGES/reference.po
    doc/source/reference/functions/prefix_rk_search.rst

  Modified: doc/locale/ja/LC_MESSAGES/reference.po (+12 -12)
===================================================================
--- doc/locale/ja/LC_MESSAGES/reference.po    2016-03-30 20:07:44 +0900 (fd12ca7)
+++ doc/locale/ja/LC_MESSAGES/reference.po    2016-03-30 21:54:38 +0900 (566b1e2)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 1.2.1\n"
 "Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2016-03-27 14:50+0900\n"
+"PO-Revision-Date: 2016-03-30 21:54+0900\n"
 "Last-Translator: Masafumi Yokoyama <yokoyama �� clear-code.com>\n"
 "Language-Team: Japanese\n"
 "Language: ja\n"
@@ -16514,14 +16514,14 @@ msgstr ""
 msgid "現在時刻に対応するTime型のオブジェクトを返します。"
 msgstr ""
 
-msgid "``prefix_rk_search()``"
+msgid "``prefix_rk_search``"
 msgstr ""
 
 msgid ""
-"``prefix_rk_search()`` selects records by :doc:`/reference/operations/"
+"``prefix_rk_search`` selects records by :doc:`/reference/operations/"
 "prefix_rk_search`."
 msgstr ""
-"``prefix_rk_search()`` は :doc:`/reference/operations/prefix_rk_search` を"
+"``prefix_rk_search`` は :doc:`/reference/operations/prefix_rk_search` を"
 "使ってレコードを選択します。"
 
 msgid "You need to create :ref:`table-pat-key` table for prefix RK search."
@@ -16529,17 +16529,17 @@ msgstr ""
 "前方一致RK検索を使うには :ref:`table-pat-key` テーブルを作る必要があります。"
 
 msgid ""
-"You can't use ``prefix_rk_search()`` for sequential scan. It's a selector "
+"You can't use ``prefix_rk_search`` for sequential scan. It's a selector "
 "only procedure."
 msgstr ""
-"シーケンシャルスキャンでは ``prefix_rk_search()`` を使うことはできません。こ"
+"シーケンシャルスキャンでは ``prefix_rk_search`` を使うことはできません。こ"
 "れはセレクターのみのプロシージャです。"
 
 msgid ""
-"``prefix_rk_search()`` requires two arguments. They are ``column`` and "
+"``prefix_rk_search`` requires two arguments. They are ``column`` and "
 "``query``::"
 msgstr ""
-"``prefix_rk_search()`` には2つ引数があります。 ``column`` と ``query`` です。"
+"``prefix_rk_search`` には2つ引数があります。 ``column`` と ``query`` です。"
 
 msgid "``column`` must be ``_key`` for now."
 msgstr "今のところ、 ``column`` は必ず ``_key`` にしなければいけません。"
@@ -16548,10 +16548,10 @@ msgid "``query`` must be string."
 msgstr "``query`` は文字列です。"
 
 msgid ""
-"Here is the simple usage of ``prefix_rk_search()`` function which selects ``"
+"Here is the simple usage of ``prefix_rk_search`` function which selects ``"
 "ニホン`` and ``ニッポン`` by ``ni``:"
 msgstr ""
-"以下は簡単な ``prefix_rk_search()`` 関数の使い方です。この使い方では ``ni`` "
+"以下は簡単な ``prefix_rk_search`` 関数の使い方です。この使い方では ``ni`` "
 "で ``ニホン`` と ``ニッポン`` を検索しています。"
 
 msgid ""
@@ -16617,8 +16617,8 @@ msgstr "今のところ、常に ``_key`` を指定してください。"
 msgid "Specifies a query in romaji, katakana or hiragana as string."
 msgstr "クエリー文字列をローマ字、カタカナ、ひらがなのどれかで指定します。"
 
-msgid "``prefix_rk_search()`` function returns matched records."
-msgstr "``prefix_rk_search()`` 関数はマッチしたレコードを返します。"
+msgid "``prefix_rk_search`` function returns matched records."
+msgstr "``prefix_rk_search`` 関数はマッチしたレコードを返します。"
 
 msgid ":doc:`/reference/operations/prefix_rk_search`"
 msgstr ""

  Modified: doc/source/reference/functions/prefix_rk_search.rst (+6 -6)
===================================================================
--- doc/source/reference/functions/prefix_rk_search.rst    2016-03-30 20:07:44 +0900 (8fceac1)
+++ doc/source/reference/functions/prefix_rk_search.rst    2016-03-30 21:54:38 +0900 (a43084c)
@@ -5,24 +5,24 @@
 .. groonga-command
 .. database: functions_prefix_rk_search
 
-``prefix_rk_search()``
-======================
+``prefix_rk_search``
+====================
 
 Summary
 -------
 
-``prefix_rk_search()`` selects records by
+``prefix_rk_search`` selects records by
 :doc:`/reference/operations/prefix_rk_search`.
 
 You need to create :ref:`table-pat-key` table for prefix RK search.
 
-You can't use ``prefix_rk_search()`` for sequential scan. It's a
+You can't use ``prefix_rk_search`` for sequential scan. It's a
 selector only procedure.
 
 Syntax
 ------
 
-``prefix_rk_search()`` requires two arguments. They are ``column`` and
+``prefix_rk_search`` requires two arguments. They are ``column`` and
 ``query``::
 
   prefix_rk_search(column, query)
@@ -149,7 +149,7 @@ Specifies a query in romaji, katakana or hiragana as string.
 Return value
 ------------
 
-``prefix_rk_search()`` function returns matched records.
+``prefix_rk_search`` function returns matched records.
 
 See also
 --------
-------------- next part --------------
HTML����������������������������...
Descargar 



More information about the Groonga-commit mailing list
Back to archive index