Skip to content

Commit df53754

Browse files
Change the titles of all tutorials to be consistent (#2394) (#2401)
Co-authored-by: NataliaIvakina <[email protected]>
1 parent 90556c8 commit df53754

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

modules/ROOT/pages/database-administration/composite-databases/concepts.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ image::federation-sharding.png[title="Data federation and sharding", width=450,
5858

5959
[TIP]
6060
====
61-
For a step-by-step tutorial on setting up and using a Composite database with federated and sharded data, see xref:tutorial/tutorial-composite-database.adoc[Set up and use a Composite database].
61+
For a step-by-step tutorial on setting up and using a Composite database with federated and sharded data, see xref:tutorial/tutorial-composite-database.adoc[Tutorials -> Setting up and using a composite database].
6262
====

modules/ROOT/pages/docker/clustering.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
[[docker-cc]]
44
= Deploy a Neo4j cluster on multiple Docker hosts
55

6-
Neo4j supports clustering in a containerized environment without an orchestration tool.
7-
This section describes how to use Docker to set up a cluster across multiple machines.
8-
For a tutorial on how to set up a cluster locally for testing purposes, see xref:tutorial/tutorial-clustering-docker.adoc[Deploy a Neo4j cluster in a Docker container].
6+
Neo4j supports clustering in a containerized environment without an orchestration tool.
7+
This section describes how to use Docker to set up a cluster across multiple machines.
8+
For a tutorial on how to set up a cluster locally for testing purposes, see xref:tutorial/tutorial-clustering-docker.adoc[Tutorials -> Deploying a Neo4j cluster in a Docker container].
99

1010
[NOTE]
1111
====

modules/ROOT/pages/import.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This section describes the `neo4j-admin database import` option.
4747
[TIP]
4848
====
4949
For information on `LOAD CSV`, see the link:{neo4j-docs-base-uri}/cypher-manual/current/clauses/load-csv[Cypher Manual -> `LOAD CSV`].
50-
For in-depth examples of using the command `neo4j-admin database import`, refer to the xref:tutorial/neo4j-admin-import.adoc[Tutorials -> Neo4j Admin import].
50+
For in-depth examples of using the command `neo4j-admin database import`, refer to the xref:tutorial/neo4j-admin-import.adoc[Tutorials -> Importing data].
5151
====
5252

5353
These are some things you need to keep in mind when creating your input files:

modules/ROOT/pages/tutorial/index.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ The following step-by-step tutorials cover common operational tasks or otherwise
77

88
//* <<tutorial-local-cluster, Set up a local Causal Cluster>> -- This tutorial walks through the basics of setting up a Neo4j Causal Cluster.
99
//* <<tutorial-cc-backup-restore-db, Back up and restore a database in Causal Cluster>> -- This tutorial provides a detailed example of how to back up and restore a database in a running Causal Cluster.
10-
* xref:tutorial/neo4j-admin-import.adoc[Neo4j Admin import] -- This tutorial provides detailed examples to illustrate the capabilities of importing data from CSV files with the command `neo4j-admin database import`.
11-
* xref:tutorial/tutorial-composite-database.adoc[Set up and use a Composite database] -- This tutorial walks through the basics of setting up and using Composite databases.
10+
* xref:tutorial/neo4j-admin-import.adoc[Importing data] -- This tutorial provides detailed examples to illustrate the capabilities of importing data from CSV files with the command `neo4j-admin database import`.
11+
* xref:tutorial/tutorial-composite-database.adoc[Setting up and using a composite database] -- This tutorial walks through the basics of setting up and using Composite databases.
1212
* xref:tutorial/access-control.adoc[Fine-grained access control] -- This tutorial presents an example that illustrates various aspects of security and fine-grained access control.
1313
* xref:tutorial/tutorial-sso-configuration.adoc[Configuring Neo4j Single Sign-On (SSO)] -- Examples and solutions to common problems when configuring SSO.
14-
* xref:tutorial/tutorial-clustering-docker.adoc[Deploy a Neo4j cluster in a Docker container] -- This tutorial walks through setting up a Neo4j cluster on your local computer for testing purposes.
14+
* xref:tutorial/tutorial-clustering-docker.adoc[Deploying a Neo4j cluster in a Docker container] -- This tutorial walks through setting up a Neo4j cluster on your local computer for testing purposes.

modules/ROOT/pages/tutorial/neo4j-admin-import.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[[tutorial-neo4j-admin-import]]
2-
= Neo4j-admin import
2+
= Importing data
33
:description: This tutorial provides detailed examples to illustrate the capabilities of importing data from CSV files with the command `neo4j-admin database import`.
44

55
This tutorial provides detailed examples to illustrate the capabilities of importing data from CSV files with the command xref:import.adoc[`neo4j-admin database import`].

modules/ROOT/pages/tutorial/tutorial-clustering-docker.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
:description: How to deploy a Neo4j cluster in a containerized environment without an orchestration tool.
22
[role=enterprise-edition]
33
[[docker-cc]]
4-
= Deploy a Neo4j cluster in a Docker container
4+
= Deploying a Neo4j cluster in a Docker container
55

66
Neo4j supports clustering in a containerized environment without an orchestration tool.
77
This tutorial walks through setting this up locally for testing purposes.

modules/ROOT/pages/tutorial/tutorial-composite-database.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[role=enterprise-edition]
22
[[tutorial-composite-database]]
3-
= Set up and use a Composite database
4-
:description: This tutorial walks through the basics of setting up and using a Composite database.
3+
= Setting up and using a composite database
4+
:description: This tutorial walks through the basics of setting up and using a composite database.
55
:page-aliases: tutorial/fabric-tutorial.adoc
66

77
Composite databases allow queries that access multiple graphs at once.
@@ -685,4 +685,4 @@ Then, using the returned product IDs, it queries both `db1` and `db2` *in parall
685685

686686
You have just learned how to store and retrieve data from multiple databases using a single Cypher query.
687687

688-
For more details on Composite databases, see xref:database-administration/composite-databases/concepts.adoc[].
688+
For more details on Composite databases, see xref:database-administration/composite-databases/concepts.adoc[].

0 commit comments

Comments
 (0)