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 typos #156

Merged
merged 1 commit into from
Sep 20, 2024
Merged
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Batch write support ([@sunng87](https://github.com/sunng87) in [#87](https://github.com/influxdb-rs/influxdb-rust/pull/87))

Build a query containing mutliple rows to be inserted
Build a query containing multiple rows to be inserted
```
let q0 = Timestamp::Hours(11)
.into_query("weather")
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Please open an issue if you have suggestions for new labels.
| Issue label | List issues | Description |
| -------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
| `Type: Bug` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Type%20Bug) | Applied to issues reporting bugs. |
| `Type: Chore` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Type%20Chore) | Applied to issues and pull requests regarding miscellaneous tasks around the reposity. |
| `Type: Chore` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Type%20Chore) | Applied to issues and pull requests regarding miscellaneous tasks around the repository. |
| `Type: Enhancement` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Type%20Enhancement) | Applied to issues and pull requests where an existing feature is improved. |
| `Type: Governance` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Type%20Governance) | Applied to issues pull requests regarding repository governance. |
| `Type: New Feature` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/status%3a%20Type%20New%20Feature) | Applied to issues and pull requests requesting or implementing new features. | |
Expand Down
4 changes: 2 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# How to release this crate

This project consists of two crates which need to be published to crates.io in the correct order. Additonally, there's some steps one's likely to miss when releasing.
This project consists of two crates which need to be published to crates.io in the correct order. Additionally, there's some steps one's likely to miss when releasing.

## Pre-Release-Checklist

- [ ] `influxdb/Cargo.toml` and `influxdb-derive/Cargo.toml`: Bumped `influxdb` and `influxdb-derive` versions to new version number?
- [ ] `influxdb/Cargo.toml`: Changed `influxdb` dependecy on `influxdb-derive` to new version number?
- [ ] `influxdb/Cargo.toml`: Changed `influxdb` dependency on `influxdb-derive` to new version number?
- [ ] `CHANGELOG.md`: Remove all entries from the unreleased section
- [ ] `CHANGELOG.md`: Add new Section for the new version number with subsections `Added`, `Changed` and `Fixed`.
- [ ] `CHANGELOG.md`: For each commit since the last release commit `Release vX.Y.Z`, added a changelog entry in the correct section linking to the author and PR in this format?
Expand Down
2 changes: 1 addition & 1 deletion influxdb/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ async fn test_json_query_tagged() {

/// INTEGRATION TEST
///
/// This test case tests whether JSON can be decoded from a InfluxDB response and wether that JSON
/// This test case tests whether JSON can be decoded from a InfluxDB response and whether that JSON
/// is equal to the data which was written to the database
/// (tested with tokio)
#[tokio::test]
Expand Down
Loading