Skip to content

Commit

Permalink
chore: fix some comments
Browse files Browse the repository at this point in the history
Signed-off-by: standstaff <zhengxingru@yeah.net>
  • Loading branch information
standstaff committed Mar 15, 2024
1 parent 1fa20e2 commit e34cd85
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ changes are immediately reflected on Dozer Live UI.
![Screenshot](./images/dozer_live_screen1.png)

### ② Test
Dozer can run the entire infrastructure locally. You can inspect data flowing in in real time or use the built-it API explorer to query data through REST and gRPC. Dozer Live explorer also provides ready-made samples to integrate results into your front-end applications.
Dozer can run the entire infrastructure locally. You can inspect data flowing in real time or use the built-it API explorer to query data through REST and gRPC. Dozer Live explorer also provides ready-made samples to integrate results into your front-end applications.

![Screenshot](./images/dozer_live_screen2.png)

Expand Down
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

0 comments on commit e34cd85

Please sign in to comment.