Skip to content

Commit 1319d9b

Browse files
authored
chore: Fix several typos (#4533)
1 parent 3b212c2 commit 1319d9b

File tree

52 files changed

+70
-70
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+70
-70
lines changed

docs/analytical_engine/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this document, we will walk you through the process of standalone deployment
1515

1616
To get started, you need to install graphscope-client and prepare a Kubernetes Cluster to continue.
1717

18-
Incase you doesn't have one, you could refer to the [Install graphscope-client](../deployment/deploy_graphscope_on_self_managed_k8s.md#install-graphscope-client) and [create kubernetes cluster](../deployment/deploy_graphscope_on_self_managed_k8s.md#prepare-a-kubernetes-cluster) to get them.
18+
In case you doesn't have one, you could refer to the [Install graphscope-client](../deployment/deploy_graphscope_on_self_managed_k8s.md#install-graphscope-client) and [create kubernetes cluster](../deployment/deploy_graphscope_on_self_managed_k8s.md#prepare-a-kubernetes-cluster) to get them.
1919

2020

2121
## Deployment GAE only

docs/analytical_engine/overview_and_architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ GAE also supports incremental computation over graph data via the [Ingress](http
5353

5454
## Application Layer
5555

56-
GAE provides C++, Python and Java SDKs for graph applications, where users can freely choose programming models, programming languages, and computation patterns (batch computation or incremental computation) to develop their own applications. GAE of GraphScope also provides [20 graph analytics algorithms](https://graphscope.io/docs/latest/analytical_engine/builtin_algorithms.html) as built-in algorithms, and users can directly invoke them. GraphScope is compatible with NetworkX APIs, and thus diverse kinds of [built-in algorithms in NetworkX](https://networkx.org/documentation/stable/reference/algorithms/index.html) can also be directly invoked by users. In total, over 100 build-in graph analytical algorithms can be directly executed over GraphScope. Additionally, the support for the Pregel model has been implemented in GAE, and graph algorithms implemented in Giraph or GraphX can also be directly run on GAE. Please refer to the following tutorials on how to run NetworkX/Giraph/GraphX applications on GAE.
56+
GAE provides C++, Python and Java SDKs for graph applications, where users can freely choose programming models, programming languages, and computation patterns (batch computation or incremental computation) to develop their own applications. GAE of GraphScope also provides [20 graph analytics algorithms](https://graphscope.io/docs/latest/analytical_engine/builtin_algorithms.html) as built-in algorithms, and users can directly invoke them. GraphScope is compatible with NetworkX APIs, and thus diverse kinds of [built-in algorithms in NetworkX](https://networkx.org/documentation/stable/reference/algorithms/index.html) can also be directly invoked by users. In total, over 100 built-in graph analytical algorithms can be directly executed over GraphScope. Additionally, the support for the Pregel model has been implemented in GAE, and graph algorithms implemented in Giraph or GraphX can also be directly run on GAE. Please refer to the following tutorials on how to run NetworkX/Giraph/GraphX applications on GAE.
5757

5858
- [Tutorial: Graph Operations with NetworkX APIs](https://graphscope.io/docs/latest/analytical_engine/tutorial_networkx_operations.html)
5959
- [Tutorial: Graph Algorithms with NetworkX APIs](https://graphscope.io/docs/latest/analytical_engine/tutorial_networkx_algorithms.html)

docs/deployment/persistent_storage_of_graphs_on_k8s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ print(sub_graph.schema)
164164
sess.close()
165165
```
166166

167-
## Retore graphs from the pvc
167+
## Restore graphs from the pvc
168168

169169
Remember the vineyard ids printed above and the pvc name and then you can restore the graphs from the pvc as follows.
170170

docs/design_of_gae.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ GAE achieves high performance through a highly optimized analytical runtime base
2828

2929
## Algorithm Library
3030

31-
GAE of GraphScope provides 20 graph analytics algorithms as built-in algorithms, and users can directly invoke them. The full lists of build-in algorithms are:
31+
GAE of GraphScope provides 20 graph analytics algorithms as built-in algorithms, and users can directly invoke them. The full lists of built-in algorithms are:
3232

3333
- `sssp(src)`
3434
- `pagerank()`
@@ -52,4 +52,4 @@ GAE of GraphScope provides 20 graph analytics algorithms as built-in algorithms,
5252
- `sampling_path()`
5353

5454

55-
In addition, GraphScope is compatible with NetworkX APIs, and thus diverse kinds of [built-in algorithms in NetworkX](https://networkx.org/documentation/stable/reference/algorithms/index.html) can also be directly invoked by users. In total, over 100 build-in graph analytical algorithms can be directly executed over GraphScope, without any developing effort.
55+
In addition, GraphScope is compatible with NetworkX APIs, and thus diverse kinds of [built-in algorithms in NetworkX](https://networkx.org/documentation/stable/reference/algorithms/index.html) can also be directly invoked by users. In total, over 100 built-in graph analytical algorithms can be directly executed over GraphScope, without any developing effort.

docs/flex/coordinator/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting Started
22

3-
This guide will walk you through the process of setting up the coordinator, connecting to it via [gsctl](../../utilities/gs.md) and execuing your first command.
3+
This guide will walk you through the process of setting up the coordinator, connecting to it via [gsctl](../../utilities/gs.md) and executing your first command.
44

55
## Preparation
66

docs/flex/interactive/data_model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Temporal types can be defined in the following ways:
108108
```yaml
109109
temporal:
110110
date:
111-
# optional value: DF_YYYY_MM_DD, means ISO fomat: 2019-01-01
111+
# optional value: DF_YYYY_MM_DD, means ISO format: 2019-01-01
112112
date_format: <string>
113113
time:
114114
# optional value: TF_HH_MM_SS_SSS, means ISO format: 00:00:00.000

docs/flex/interactive/development/dev_and_test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ The main entrance for Interactive is `interactive_server`.
215215

216216
### Enable AdminService
217217

218-
To start admin service in development, use the command line argument `--enable-admin-service true`. `${ENGINE_CONFIG}` specifies the configuration for interactive query engine, see [engine-configuration](https://graphscope.io/docs/flex/interactive/configuration). `${WORKSPACE}` points to the directory where interactive related data is maintaned.
218+
To start admin service in development, use the command line argument `--enable-admin-service true`. `${ENGINE_CONFIG}` specifies the configuration for interactive query engine, see [engine-configuration](https://graphscope.io/docs/flex/interactive/configuration). `${WORKSPACE}` points to the directory where interactive related data is maintained.
219219

220220
```bash
221221
./bin/interactive_server -c ${ENGINE_CONFIG} -w ${WORKSPACE} --enable-admin-service true

docs/flex/interactive/development/java/java_sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -265,14 +265,14 @@ public class GettingStarted {
265265
}
266266
```
267267

268-
For each vertex/edge types, you need to provide the input data source and column mapping infomation.
269-
Remember to add `@` at the begining of the local file path.
270-
`Session.bulkLoading()` will submit an dataloading job to the service, and we can query the status of the job via `Session.getJobStatus()`, and wait until the job has compleleted successfully.
268+
For each vertex/edge types, you need to provide the input data source and column mapping information.
269+
Remember to add `@` at the beginning of the local file path.
270+
`Session.bulkLoading()` will submit an dataloading job to the service, and we can query the status of the job via `Session.getJobStatus()`, and wait until the job has completed successfully.
271271

272272
### Create a stored procedure
273273

274274
Stored procedures can be registered into GraphScope Interactive to encapsulate and reuse complex graph operations. Interactive support both `cypher` and `c++` queries as stored procedures.
275-
With the following code, you will create a procedure named `testProcedure` which is definied via a `cypher` query.
275+
With the following code, you will create a procedure named `testProcedure` which is defined via a `cypher` query.
276276

277277
```java
278278
public class GettingStarted{
@@ -304,7 +304,7 @@ public class GettingStarted{
304304
}
305305
```
306306

307-
The procedure could not be invokded now, since currently interactive service has not been switched to the newly created `test_graph`. We need to start the service on `test_graph`.
307+
The procedure could not be invoked now, since currently interactive service has not been switched to the newly created `test_graph`. We need to start the service on `test_graph`.
308308

309309
### Start the query service on the new graph
310310

docs/flex/interactive/development/python/GraphManagementApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Name | Type | Description | Notes
101101

102102
### Return type
103103

104-
[Reesult](./result.rst)[[**CreateGraphResponse**](CreateGraphResponse.md)]
104+
[Result](./result.rst)[[**CreateGraphResponse**](CreateGraphResponse.md)]
105105

106106

107107
### Authorization

docs/flex/interactive/development/python/JobManagementApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All URIs are relative to *{INTERACTIVE_ADMIN_ENDPOINT}*
44

55
| Method | HTTP request | Description |
66
|------------- | ------------- | -------------|
7-
| [**CancelJob**](JobManagementApi.md#CancelJob) | **DELETE** /v1/job/{job_id} | Cancell the job with specified jobId |
7+
| [**CancelJob**](JobManagementApi.md#CancelJob) | **DELETE** /v1/job/{job_id} | Cancel the job with specified jobId |
88
| [**GetJobById**](JobManagementApi.md#GetJobById) | **GET** /v1/job/{job_id} | Get the metadata of the job with specified jobId |
99
| [**ListJobs**](JobManagementApi.md#ListJobs) | **GET** /v1/job | List all jobs(including history jobs) |
1010

0 commit comments

Comments
 (0)