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 some comments #2456

Merged
merged 1 commit into from
Apr 3, 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
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub fn commit(
transaction_forest.remove_subtree(xid, |_, ops| operations.extend(ops));

if xid == pxid {
// This is a top level transaciton
// This is a top level transaction
Some(Transaction {
commit_scn: scn,
commit_timestamp: timestamp,
Expand Down
2 changes: 1 addition & 1 deletion dozer-ingestion/tests/test_suite/connectors/mongodb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async fn create_mongodb_server() -> (mongodb::Database, MongodbConnectorTest, Mo
None,
)
.await
.expect("Failed to initalize replSet");
.expect("Failed to initialize replSet");

let client = mongodb::Client::with_options(connection_options.clone()).unwrap();
let db = client.default_database().unwrap();
Expand Down
2 changes: 1 addition & 1 deletion dozer-sql/jsonpath/src/path/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use dozer_types::json_types::JsonValue;

/// The module is in charge of processing [[JsonPathIndex]] elements
mod index;
/// The module is a helper module providing the set of helping funcitons to process a json elements
/// The module is a helper module providing the set of helping functions to process a json elements
mod json;
/// The module is responsible for processing of the [[JsonPath]] elements
mod top;
Expand Down
Loading