Skip to content

Commit 0eabfa3

Browse files
committed
Replace all mentions of we, our, and us with you and yours
1 parent 137d1f6 commit 0eabfa3

File tree

15 files changed

+37
-38
lines changed

15 files changed

+37
-38
lines changed

modules/ROOT/pages/authentication-authorization/manage-privileges.adoc

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,20 @@
77
Role-based access control (_RBAC_) is a method of restricting access to authorized users, by assigning users to specific roles with a particular set of privileges granted to them.
88
Privileges control the access rights to graph elements using a combined allowlist/denylist mechanism.
99
It is possible to grant or deny access, or use a combination of the two.
10-
The user will be able to access the resource if they have a `GRANT` (allowlist) and do not have a `DENY` (denylist) relevant to that resource.
11-
All other combinations of `GRANT` and `DENY` will result in the matching path being inaccessible.
12-
What this means in practice depends on whether we are talking about a xref:authentication-authorization/privileges-reads.adoc[read privilege] or a xref:authentication-authorization/privileges-writes.adoc[write privilege]:
10+
You are able to access a resource if you have a `GRANT` (allowlist) and do not have a `DENY` (denylist) relevant to that resource.
11+
All other combinations of `GRANT` and `DENY` result in the matching path being inaccessible.
12+
What this means in practice depends on whether you have a xref:authentication-authorization/privileges-reads.adoc[read privilege] or a xref:authentication-authorization/privileges-writes.adoc[write privilege]:
1313

14-
* If an entity is not accessible due to xref:authentication-authorization/privileges-reads.adoc[read privileges], the data will become invisible.
15-
It will appear to the user as if they had a smaller database (smaller graph).
16-
* If an entity is not accessible due to xref:authentication-authorization/privileges-writes.adoc[write privileges], an error will occur on any attempt to write that data.
14+
* If an entity is not accessible due to xref:authentication-authorization/privileges-reads.adoc[read privileges], the data is invisible.
15+
It appears to you as if you had a smaller database (smaller graph).
16+
* If an entity is not accessible due to xref:authentication-authorization/privileges-writes.adoc[write privileges], an error occurs on any attempt to write that data.
1717

1818
[NOTE]
1919
====
20-
In this document we will often use the terms _'allows'_ and _'enables'_ in seemingly identical ways. However, there is a subtle difference.
21-
We will use _'enables'_ to refer to the consequences of xref:authentication-authorization/privileges-reads.adoc[read privileges] where a restriction will not cause an error, only a reduction in the apparent graph size.
22-
We will use _'allows'_ to refer to the consequence of xref:authentication-authorization/privileges-writes.adoc[write privileges] where a restriction can result in an error.
20+
This page often uses the terms _'allows'_ and _'enables'_ in seemingly identical ways.
21+
However, there is a subtle difference.
22+
_'enables'_ refers to the consequences of xref:authentication-authorization/privileges-reads.adoc[read privileges] where a restriction will not cause an error, only a reduction in the apparent graph size.
23+
_'allows'_ refers to the consequence of xref:authentication-authorization/privileges-writes.adoc[write privileges] where a restriction can result in an error.
2324
====
2425

2526
[NOTE]

modules/ROOT/pages/authentication-authorization/password-and-user-recovery.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ GRANT ALL ON DATABASE * TO admin;
200200
+
201201
[NOTE]
202202
====
203-
Before running the `:exit` command, we suggest granting the newly created role to a user.
203+
Before running the `:exit` command, grant the newly created role to a user.
204204
Although this is optional, without this step you will have only collected all admin privileges in a role that no one is assigned to.
205205
206206
To grant the role to a user (assuming your existing user is named `neo4j`), you can run `GRANT ROLE admin TO neo4j;`

modules/ROOT/pages/authentication-authorization/privileges-reads.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ DENY [IMMUTABLE] TRAVERSE
6464
TO role[, ...]
6565
----
6666

67-
For example, we can disable users with the role `regularUsers` from finding all nodes with the label `Payments`:
67+
For example, you can disable users with the role `regularUsers` from finding all nodes with the label `Payments`:
6868

6969
[source, cypher, role=noplay]
7070
----
@@ -146,7 +146,7 @@ DENY [IMMUTABLE] READ "{" { * | property[, ...] } "}"
146146
TO role[, ...]
147147
----
148148

149-
Although we just granted the role `regularUsers` the right to read all properties, we may want to hide the `secret` property.
149+
Although you just granted the role `regularUsers` the right to read all properties, you may want to hide the `secret` property.
150150
The following example shows how to do that:
151151

152152
[source, cypher, role=noplay]

modules/ROOT/pages/clustering/multi-region-deployment/multi-data-center-routing.adoc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ The DSL is made available by selecting the `user-defined` catch-up strategy as f
344344
server.cluster.catchup.upstream_strategy=user-defined
345345
----
346346

347-
Once the user-defined strategy has been specified, we can add configuration to the xref:configuration/configuration-settings.adoc#config_server.cluster.catchup.user_defined_upstream_strategy[`server.cluster.catchup.user_defined_upstream_strategy`] setting based on the server tags that have been set for the cluster.
347+
Once the user-defined strategy has been specified, you can add configuration to the xref:configuration/configuration-settings.adoc#config_server.cluster.catchup.user_defined_upstream_strategy[`server.cluster.catchup.user_defined_upstream_strategy`] setting based on the server tags that have been set for the cluster.
348348

349349
This functionality is described with two examples:
350350

@@ -354,7 +354,7 @@ This functionality is described with two examples:
354354
For illustrative purposes four regions are proposed: `north`, `south`, `east`, and `west` and within each region there is a number of data centers such as `north1` or `west2`.
355355
The server tags are configured so that each data center maps to its own server tag.
356356
Additionally it is assumed that each data center fails independently from the others and that a region can act as a supergroup of its constituent data centers.
357-
So a server in the `north` region might have configuration like `initial.server.tags=north2,north` which puts it in two groups that match to our physical topology as shown in the diagram below.
357+
So a server in the `north` region might have configuration like `initial.server.tags=north2,north` which puts it in two groups that match to your physical topology as shown in the diagram below.
358358
359359
[[img-nesw-regions-and-dcs]]
360360
image::nesw-regions-and-dcs.svg[title="Mapping regions and data centers onto server tags", role="middle"]
@@ -406,25 +406,25 @@ The `min()` filter is a simple but reasonable health indicator of a set of serve
406406
// === Building upstream strategy plugins using Java
407407

408408
// Neo4j supports an API which advanced users may use to enhance upstream recommendations in arbitrary ways: load, subnet, machine size, or anything else accessible from the JVM.
409-
// In such cases we are invited to build our own implementations of `org.neo4j.causalclustering.upstream.UpstreamDatabaseSelectionStrategy` to suit our own needs, and register them with the catch-up strategy selection pipeline just like the pre-packaged plugins.
409+
// In such cases you are invited to build your own implementations of `org.neo4j.causalclustering.upstream.UpstreamDatabaseSelectionStrategy` to suit your own needs, and register them with the catch-up strategy selection pipeline just like the pre-packaged plugins.
410410

411-
// We have to override the `org.neo4j.causalclustering.upstream.UpstreamDatabaseSelectionStrategy#upstreamDatabase()` method in our code.
412-
// Overriding that class gives us access to the following items:
411+
// You have to override the `org.neo4j.causalclustering.upstream.UpstreamDatabaseSelectionStrategy#upstreamDatabase()` method in your code.
412+
// Overriding that class gives you access to the following items:
413413

414414
// [options="header"]
415415
// |===
416416
// | Resource | Description
417417
// | `org.neo4j.causalclustering.discovery.TopologyService` | This is a directory service which provides access to the addresses of all servers and server groups in the cluster.
418418
// | `org.neo4j.kernel.configuration.Config` | This provides the configuration from _neo4j.conf_ for the local instance.
419-
// Configuration for our own plugin can reside here.
419+
// Configuration for your own plugin can reside here.
420420
// | `org.neo4j.causalclustering.identity.MemberId` | This provides the unique cluster `MemberId` of the current instance.
421421
// |===
422422

423-
// Once our code is written and tested, we have to prepare it for deployment.
423+
// Once your code is written and tested, you have to prepare it for deployment.
424424
// `UpstreamDatabaseSelectionStrategy` plugins are loaded via the Java Service Loader.
425-
// This means when we package our code into a jar file, we'll have to create a file _META-INF.services/org.neo4j.upstream.readreplica.UpstreamDatabaseSelectionStrategy_ in which we write the fully qualified class name(s) of the plugins, e.g. `org.example.myplugins.PreferServersWithHighIOPS`.
425+
// This means when you package your code into a jar file, you'll have to create a file _META-INF.services/org.neo4j.upstream.readreplica.UpstreamDatabaseSelectionStrategy_ in which you write the fully qualified class name(s) of the plugins, e.g. `org.example.myplugins.PreferServersWithHighIOPS`.
426426

427-
// To deploy this jar into the Neo4j server we copy it into the xref:configuration/file-locations.adoc[_plugins_] directory and restart the instance.
427+
// To deploy this jar into the Neo4j server you copy it into the xref:configuration/file-locations.adoc[_plugins_] directory and restart the instance.
428428

429429
[[mdc-favoring-data-centers]]
430430
=== Favoring data centers

modules/ROOT/pages/clustering/setup/encryption.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This could be verified from within the certificate details:
5050
----
5151
openssl x509 -in public.crt -noout -text
5252
----
53-
We should see that the X509v3 Extended Key Usage section shows both the usages listed:
53+
You should see that the X509v3 Extended Key Usage section shows both the usages listed:
5454
5555
----
5656
X509v3 Extended Key Usage:

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
= Set up and query composite databases
66

77
//Make an image that sets up the example?
8-
//The query examples assume that we have a setup similar to that in <<example-create-a-single-instance-fabric-setup>>.
8+
//The query examples assume that you have a setup similar to that in <<example-create-a-single-instance-fabric-setup>>.
99

1010
The examples featured in this section make use of the two Cypher clauses: link:{neo4j-docs-base-uri}/cypher-manual/current/clauses/use[`USE`] and link:{neo4j-docs-base-uri}/cypher-manual/current/subqueries/call-subquery/[`CALL {}`].
1111

@@ -147,7 +147,7 @@ RETURN movie.title AS title
147147
----
148148
====
149149
In the example above, the part of the query accessing graph data, `MATCH (movie:Movie)`, is wrapped in a sub-query with a dynamic `USE` clause.
150-
`UNWIND` is used to get the names of our graphs, each on one row.
150+
`UNWIND` is used to get the names of your graphs, each on one row.
151151
The `CALL {}` sub-query executes once per input row.
152152
In this case, once selecting `cineasts.latest`, and once selecting `cineasts.upcoming`.
153153

@@ -239,7 +239,7 @@ RETURN movie
239239
====
240240

241241
The first part of the query finds the movie with the longest running time from `cineasts.latest`, and returns its release month.
242-
The second part of the query finds all movies in `cineasts.upcoming` that fulfill our condition and returns them.
242+
The second part of the query finds all movies in `cineasts.upcoming` that fulfill your condition and returns them.
243243
The sub-query imports the `monthOfLongest` variable using `WITH monthOfLongest`, to make it accessible.
244244

245245
[[composite-databases-queries-updates]]

modules/ROOT/pages/database-administration/standard-databases/errors.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ The possible values for the optional operation are:
190190

191191
If you choose to clear the current cluster state, the server will try to join as a new member,
192192
but this joining can succeed if and only if there is a majority of old members "letting" the new members in.
193-
Let's assume our cluster has a topology with three primaries.
193+
Let's assume your cluster has a topology with three primaries.
194194
If there is only one server in `QUARANTINED` mode, then it is safe to choose `replaceStateKeepStore` or `replaceStateReplaceStore`.
195195
If there are two servers in `QUARANTINED` mode, then you should not use concurrently `replaceStateKeepStore` or `replaceStateReplaceStore` for both servers because there would be no majority to let them in.
196196

modules/ROOT/pages/database-administration/standard-databases/seed-from-uri.adoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,6 @@ CREATE DATABASE foo OPTIONS { seedURI: 'azb://myStorageAccount/myContainer/myBac
187187
[[s3-seed-provider]]
188188
=== S3SeedProvider
189189

190-
// When Cypher 25 is released, we have to label this section 'Cypher 5' as this functionality is only available in Cypher 5.
191-
192190
The `S3SeedProvider` supports:
193191

194192
** `s3:` label:deprecated[Deprecated in 5.26]

modules/ROOT/pages/database-administration/syntax.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Needs to be part of a grouping.
3434
| `[` and `]`
3535
| Used to indicate an optional part of the command.
3636
It also groups alternatives together, when there can be either of the alternatives or nothing.
37-
| If a keyword in the syntax can either be in singular or plural, we can indicate that the `S` is optional with `GRAPH[S]`.
37+
| If a keyword in the syntax can either be in singular or plural, you can indicate that the `S` is optional with `GRAPH[S]`.
3838

3939
| `+...+`
4040
|
@@ -43,7 +43,7 @@ Related to the command part immediately before this is repeated.
4343
| A comma separated list of names would be `+name[, ...]+`.
4444

4545
| `"`
46-
| When a special character is part of the syntax itself, we surround it with `"` to indicate this.
46+
| When a special character is part of the syntax itself, surround it with `"` to indicate this.
4747
|
4848
To include `+{+` in the syntax use `+"{" { * \| name } "}"+`.
4949
In this case, you will get either `+{ * }+` or `+{ name }+`.

modules/ROOT/pages/installation/linux/debian.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can install Neo4j on Debian, and Debian-based distributions like Ubuntu, usi
1010
Neo4j {neo4j-version} requires the Java 21 runtime.
1111

1212
=== OpenJDK Java 21
13-
Most of our supported Linux distributions have OpenJDK Java 21 available by default.
13+
Most of the supported Linux distributions have OpenJDK Java 21 available by default.
1414
Consequently, no extra setup is required if you are using OpenJDK Java, the correct Java dependency will be installed by the package manager when installing Neo4j.
1515

1616
[[debian-prerequisites-notopenjdk]]

0 commit comments

Comments
 (0)