Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix typos #662

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The console url: http://127.0.0.1:26629

**3. Playground**

open the `http://127.0.0.1:26629/database` to create database or collection, then go the playgound
open the `http://127.0.0.1:26629/database` to create database or collection, then go the playground

```typescript
// create a account
Expand Down
2 changes: 1 addition & 1 deletion docs/build/node/community_node.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
We have two types of node: Normal Nodes & Validator Nodes.
Both types of node can be connected directly, the differences is that you have to sign when querying data from the validator nodes while no signiture is required when querying from normal nodes.
Both types of node can be connected directly, the differences is that you have to sign when querying data from the validator nodes while no signature is required when querying from normal nodes.
The normal nodes will give user a better using experience but sacrifice some data security. All the data querid from normal nodes is not verified and this means the truth of the data cannot be trusted. While validator nodes do not have a security and trust problem but you have to sign for every [Query Session]()

**Normal Nodes**
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ pub enum DB3ClientCommand {

#[clap(name = "subscribe")]
Subcribe {
/// subcribe all the events default true
/// subscribe all the events default true
#[clap(long, default_value = "true")]
all_event: bool,
},
Expand Down
2 changes: 1 addition & 1 deletion tools/db3up_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ elif [ -f ~/.bashrc ]; then
[Nn]* ) echo "please add PATH=~/.db3/bin:\$PATH to ~/.bashrc manually";;
esac
else
echo "please add PATH=~/.db3/bin:\$PATH to your enviroment manually"
echo "please add PATH=~/.db3/bin:\$PATH to your environment manually"
fi
echo "install db3up successfully"
export PATH=~/.db3/bin:$PATH
Expand Down