From 8cf6c57771b1bc2f715ec8ea69eaf7461463ac1b Mon Sep 17 00:00:00 2001 From: cooper-lzy <78672629+cooper-lzy@users.noreply.github.com> Date: Tue, 18 Jan 2022 10:52:15 +0800 Subject: [PATCH] fix typo (#1046) --- docs-2.0/2.quick-start/4.nebula-graph-crud.md | 2 +- docs-2.0/20.appendix/0.FAQ.md | 6 +++--- docs-2.0/4.deployment-and-installation/5.zone.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs-2.0/2.quick-start/4.nebula-graph-crud.md b/docs-2.0/2.quick-start/4.nebula-graph-crud.md index baef4f9234c..41d3c80316c 100644 --- a/docs-2.0/2.quick-start/4.nebula-graph-crud.md +++ b/docs-2.0/2.quick-start/4.nebula-graph-crud.md @@ -31,7 +31,7 @@ First, add the Storage services to a Nebula Graph cluster. For more information, !!! compatibility - From Nebula Graph version 3.0, the Storage services added in the configuration files **CANNOT** be read or written directly. The configuration files only register the Storage services into the Meta services. You must run the `ADD HOSTS` command to read and write data on Storage servers. + From Nebula Graph version 3.0.0, the Storage services added in the configuration files **CANNOT** be read or written directly. The configuration files only register the Storage services into the Meta services. You must run the `ADD HOSTS` command to read and write data on Storage servers. ```ngql ADD HOSTS : [,: ...] [INTO NEW ZONE ""]; diff --git a/docs-2.0/20.appendix/0.FAQ.md b/docs-2.0/20.appendix/0.FAQ.md index 2626dd52b5f..3e56ca083a4 100644 --- a/docs-2.0/20.appendix/0.FAQ.md +++ b/docs-2.0/20.appendix/0.FAQ.md @@ -72,15 +72,15 @@ It is a known issue. Just retry 1 to N times, where N is the partition number. T ### "How to resolve the error `SemanticError: Missing yield clause.`?" -Starting with Nebula Graph 3.0, the statements `LOOKUP`, `GO`, and `FETCH` must output results with the `YIELD` clause. For more information, see [YIELD](../3.ngql-guide/8.clauses-and-options/yield.md). +Starting with Nebula Graph 3.0.0, the statements `LOOKUP`, `GO`, and `FETCH` must output results with the `YIELD` clause. For more information, see [YIELD](../3.ngql-guide/8.clauses-and-options/yield.md). ### "How to resolve the error `Zone not enough!`?" -From Nebula Graph version 3.0, the Storage services added in the configuration files **CANNOT** be read or written directly. The configuration files only register the Storage services into the Meta services. You must run the `ADD HOSTS` command to read and write data on Storage servers. For more information, see [Manage logical rack](../4.deployment-and-installation/5.zone.md)。 +From Nebula Graph version 3.0.0, the Storage services added in the configuration files **CANNOT** be read or written directly. The configuration files only register the Storage services into the Meta services. You must run the `ADD HOSTS` command to read and write data on Storage servers. For more information, see [Manage logical rack](../4.deployment-and-installation/5.zone.md)。 ### "How to resolve the error `To get the property of the vertex in 'v.age', should use the format 'var.tag.prop'`?" -From Nebula Graph version 3.0, patterns support matching multiple tags at the same time, so you need to specify a tag name when querying properties. The original statement `RETURN variable_name.property_name` is changed to `RETURN variable_name..property_name`. +From Nebula Graph version 3.0.0, patterns support matching multiple tags at the same time, so you need to specify a tag name when querying properties. The original statement `RETURN variable_name.property_name` is changed to `RETURN variable_name..property_name`. ### "How is the `time spent` value at the end of each return message calculated?" diff --git a/docs-2.0/4.deployment-and-installation/5.zone.md b/docs-2.0/4.deployment-and-installation/5.zone.md index 90e9dc1dfa0..5bf42004c28 100644 --- a/docs-2.0/4.deployment-and-installation/5.zone.md +++ b/docs-2.0/4.deployment-and-installation/5.zone.md @@ -6,7 +6,7 @@ Nebula Graph supports the zone feature to manage Storage services in a cluster t !!! compatibility - From Nebula Graph version 3.0, the Storage services added in the configuration files **CANNOT** be read or written directly. The configuration files only register the Storage services into the Meta services. You must run the `ADD HOSTS` command to read and write data on Storage servers. + From Nebula Graph version 3.0.0, the Storage services added in the configuration files **CANNOT** be read or written directly. The configuration files only register the Storage services into the Meta services. You must run the `ADD HOSTS` command to read and write data on Storage servers. Users can add the Storage services to a zone. Users specify a zone when creating a graph space, the graph space will be created in all the Storage services of the zone. Partitions and replicas are evenly stored in each zone. As shown in the figure below.