Skip to content

Commit 5b72e2f

Browse files
authored
GG-24926: Fixed documentation (Ignite -> GridGain) (#1)
1 parent 84f048a commit 5b72e2f

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# You can set these variables from the command line.
55
SPHINXOPTS =
66
SPHINXBUILD = sphinx-build
7-
SPHINXPROJ = ApacheIgnitebinaryclientPythonAPI
7+
SPHINXPROJ = GridGainbinaryclientPythonAPI
88
SOURCEDIR = .
99
BUILDDIR = generated
1010

docs/examples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ can not be used in a Python identifier, for example:
306306
- `$`, a common case for Scala classes,
307307
- `+`, internal class name separator in C#,
308308

309-
then `pygridgain` can not maintain this match. In such cases `pyignite` tries
309+
then `pygridgain` can not maintain this match. In such cases `pygridgain` tries
310310
to sanitize a type name to derive a “good” dataclass name from it.
311311

312312
If your code needs consistent naming between the server and the client, make

examples/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ This directory contains the following example files:
55
- `binary_basics.py` − basic operations with Complex objects,
66
- `binary_types.py` - read SQL table as a key-value cache,
77
- `create_binary.py` − create SQL row with key-value operation,
8-
- `failover.py` − fail-over connection to Ignite cluster,
8+
- `failover.py` − fail-over connection to GridGain cluster,
99
- `get_and_put.py` − basic key-value operations,
1010
- `migrate_binary.py` − work with Complex object schemas,
1111
- `scans.py` − cache scan operation,
12-
- `sql.py` − use Ignite SQL,
12+
- `sql.py` − use GridGain SQL,
1313
- `type_hints.py` − type hints.
1414

1515
For the explanation of the examples please refer to the
1616
[Examples of usage](https://pygridgain.readthedocs.io/en/latest/examples.html)
17-
section of the `pyignite` documentation.
17+
section of the `pygridgain` documentation.

pygridgain/datatypes/complex.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
class ObjectArrayObject(GridGainDataType):
3737
"""
38-
Array of Ignite objects of any consistent type. Its Python representation
38+
Array of GridGain objects of any consistent type. Its Python representation
3939
is tuple(type_id, iterable of any type). The only type ID that makes sense
4040
in Python client is :py:attr:`~OBJECT`, that corresponds directly to
4141
the root object type in Java type hierarchy (`java.lang.Object`).
@@ -187,10 +187,10 @@ class CollectionObject(GridGainDataType):
187187
Represented as tuple(hint, iterable of any type) in Python. Hints are:
188188
189189
* :py:attr:`~pygridgain.datatypes.complex.CollectionObject.USER_SET` −
190-
a set of unique Ignite thin data objects. The exact Java type of a set
190+
a set of unique GridGain thin data objects. The exact Java type of a set
191191
is undefined,
192192
* :py:attr:`~pygridgain.datatypes.complex.CollectionObject.USER_COL` −
193-
a collection of Ignite thin data objects. The exact Java type
193+
a collection of GridGain thin data objects. The exact Java type
194194
of a collection is undefined,
195195
* :py:attr:`~pygridgain.datatypes.complex.CollectionObject.ARR_LIST` −
196196
represents the `java.util.ArrayList` type,

requirements/install.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# these pip packages are necessary for the pyignite to run
1+
# these pip packages are necessary for the pygridgain to run
22

33
typing==3.6.6; python_version<'3.5'
44
attrs==18.1.0

0 commit comments

Comments
 (0)