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

fix : doc's typos #104

Open
wants to merge 3 commits 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 docs/API.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# API Docs

Mintpool exposes a REST API for interacting with the node. The API is ratelimited by default to
Mintpool exposes a REST API for interacting with the node. The API is rate-limited by default to
prevent spam requests.
See `src/api/mod.rs` for router definition

Expand Down
2 changes: 1 addition & 1 deletion docs/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ tracing::info!(monotonic_counter.number = 1);
tracing::info!(counter.example3 = 1, other_fields="will be included in tags", "Be careful about cardinality");
```

**Don't put log lines in the same trace statements as metrics, especially if theres a format
**Don't put log lines in the same trace statements as metrics, especially if there is a format
variable in the log line,
they will blow up you metrics cardinality and cost a lot of money if you use DataDog**

Expand Down
2 changes: 1 addition & 1 deletion src/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ where
})
}

/// Checks for new premints being brought onchain then sends to controller to handle
/// Checks for new premints being brought onchain then sends to the controller to handle
pub struct MintChecker {
chain_id: u64,
controller: ControllerInterface,
Expand Down