[Groonga-commit] groonga/groonga [master] doc en: fix warnings about unknown document

Zurück zum Archiv-Index

HAYASHI Kentaro null+****@clear*****
Fri Dec 28 14:37:44 JST 2012


HAYASHI Kentaro	2012-12-28 14:37:44 +0900 (Fri, 28 Dec 2012)

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

  Log:
    doc en: fix warnings about unknown document

  Modified files:
    doc/source/reference/functions/geo_distance.txt
    doc/source/tutorial/data.txt
    doc/source/tutorial/introduction.txt

  Modified: doc/source/reference/functions/geo_distance.txt (+2 -2)
===================================================================
--- doc/source/reference/functions/geo_distance.txt    2012-12-28 14:32:05 +0900 (832ebcd)
+++ doc/source/reference/functions/geo_distance.txt    2012-12-28 14:37:44 +0900 (52d6245)
@@ -158,7 +158,7 @@ you want to calculate the value of distance between two points.
 
 You can specify the value of GeoPoint type. [#]_
 
-See :doc:`/reference/type` about GeoPoint.
+See :doc:`/reference/types` about GeoPoint.
 
 ``point2``
 """"""""""
@@ -169,7 +169,7 @@ you want to calculate the value of distance between two points.
 You can specify the value of GeoPoint type or 
 the string indicating the coordinate.
 
-See :doc:`/reference/type` about GeoPoint and the coordinate.
+See :doc:`/reference/types` about GeoPoint and the coordinate.
 
 Optional parameter
 ^^^^^^^^^^^^^^^^^^

  Modified: doc/source/tutorial/data.txt (+4 -4)
===================================================================
--- doc/source/tutorial/data.txt    2012-12-28 14:32:05 +0900 (c776272)
+++ doc/source/tutorial/data.txt    2012-12-28 14:37:44 +0900 (f95e73b)
@@ -15,7 +15,7 @@ Groonga is a full text search engine but also serves as a column-oriented data s
 Overview
 --------
 
-The basic data types of groonga are roughly divided into 5 groups --- boolean type, numeric types, string types, date/time type and longitude/latitude types. The numeric types are further divided according to whether integer or floating point number, signed or unsigned and the number of bits allocated to each integer. The string types are further divided according to the maximum length. The longitude/latitude types are further divided according to the geographic coordinate system. For more details, see :doc:`/reference/type`.
+The basic data types of groonga are roughly divided into 5 groups --- boolean type, numeric types, string types, date/time type and longitude/latitude types. The numeric types are further divided according to whether integer or floating point number, signed or unsigned and the number of bits allocated to each integer. The string types are further divided according to the maximum length. The longitude/latitude types are further divided according to the geographic coordinate system. For more details, see :doc:`/reference/types`.
 
 In addition, groonga supports reference types and vector types. Reference types are designed for accessing other tables. Vector types are designed for storing a variable number of values in one element.
 
@@ -46,7 +46,7 @@ The following example creates a boolean type column and adds three records. Note
 Numeric types
 -------------
 
-The numeric types are divided into integer types and a floating point number type. The integer types are further divided into the signed integer types and unsigned integer types. In addition, you can choose the number of bits allocated to each integer. For more details, see :doc:`/reference/type`. The default value of the numeric types is 0.
+The numeric types are divided into integer types and a floating point number type. The integer types are further divided into the signed integer types and unsigned integer types. In addition, you can choose the number of bits allocated to each integer. For more details, see :doc:`/reference/types`. The default value of the numeric types is 0.
 
 The following example creates an Int8 column and a Float column, and then updates existing records. The :doc:`/reference/commands/load` command updates the weight column as expected. On the other hand, the price column values are different from the specified values because 15.9 is not an integer and 200 is too large. 15.9 is converted to 15 by removing the fractional part. 200 causes an overflow and the result becomes -56. Note that the result of an overflow/underflow is undefined.
 
@@ -65,7 +65,7 @@ The following example creates an Int8 column and a Float column, and then update
 String types
 ------------
 
-The string types are divided according to the maximum length. For more details, see :doc:`/reference/type`. The default value is the zero-length string.
+The string types are divided according to the maximum length. For more details, see :doc:`/reference/types`. The default value is the zero-length string.
 
 The following example creates a ShortText column and updates existing records. The third record has the default value because not updated.
 
@@ -99,7 +99,7 @@ The following example creates a Time column and updates existing records. The fi
 Longitude and latitude types
 ----------------------------
 
-The longitude and latitude types are divided according to the geographic coordinate system. For more details, see :doc:`/reference/type`. To represent a longitude and latitude, groonga uses a string formatted as follows:
+The longitude and latitude types are divided according to the geographic coordinate system. For more details, see :doc:`/reference/types`. To represent a longitude and latitude, groonga uses a string formatted as follows:
 
 * "longitude x latitude" in milliseconds (e.g.: "128452975x503157902")
 * "longitude x latitude" in degrees (e.g.: "35.6813819x139.7660839")

  Modified: doc/source/tutorial/introduction.txt (+1 -1)
===================================================================
--- doc/source/tutorial/introduction.txt    2012-12-28 14:32:05 +0900 (b593067)
+++ doc/source/tutorial/introduction.txt    2012-12-28 14:37:44 +0900 (cae9851)
@@ -93,7 +93,7 @@ A :doc:`/reference/commands/table_create` command creates a new table.
 
 In most cases, a table has a primary key which must be specified with its data type and index type. 
 
-There are various data types such as integers, strings, etc. See also :doc:`/reference/type` for more details. The index type determines the search performance and the availability of prefix searches. The details will be described later.
+There are various data types such as integers, strings, etc. See also :doc:`/reference/types` for more details. The index type determines the search performance and the availability of prefix searches. The details will be described later.
 
 Let's create a table. The following example creates a table with a primary key. The `name` parameter specifies the name of the table. The `flags` parameter specifies the index type for the primary key. The `key_type` parameter specifies the data type of the primary key.
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Zurück zum Archiv-Index