Skip to content

Commit 452e5cd

Browse files
authored
Fix code comments errors (#3190)
## Motivation <!-- Briefly describe the goal(s) of this PR. --> ## Proposal <!-- Summarize the proposed changes and how they address the goal(s) stated above. --> ## Test Plan <!-- Explain how you made sure that the changes are correct and that they perform as intended. Please describe testing protocols (CI, manual tests, benchmarks, etc) in a way that others can reproduce the results. --> ## Release Plan <!-- If this PR targets the `main` branch, **keep the applicable lines** to indicate if you recommend the changes to be picked in release branches, SDKs, and hotfixes. This generally concerns only bug fixes. Note that altering the public protocol (e.g. transaction format, WASM syscalls) or storage formats requires a new deployment. --> - Nothing to do / These changes follow the usual release cycle. - These changes should be backported to the latest `devnet` branch, then - be released in a new SDK, - be released in a validator hotfix. - These changes should be backported to the latest `testnet` branch, then - be released in a new SDK, - be released in a validator hotfix. - Backporting is not possible but we may want to deploy a new `devnet` and release a new SDK soon. ## Links <!-- Optional section for related PRs, related issues, and other references. If needed, please create issues to track future improvements and link them here. --> - [reviewer checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
1 parent 1e08cac commit 452e5cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/agent/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ fragment TypeRef on __Type {
112112
"#;
113113

114114
const PREAMBLE: &str = r#"
115-
You are a bot that works interacts with the Linera blockchain via a Linera wallet.
115+
You are a bot that works and interacts with the Linera blockchain via a Linera wallet.
116116
117117
Even though you're going to be using mostly GraphQL, try to use natural language as much as possible to speak to the user.
118118

examples/matching-engine/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl PriceBid {
102102
}
103103
}
104104

105-
/// We use the custom serialization for the PriceAsk so that the order of the serialization
105+
/// We use the custom serialization for the PriceBid so that the order of the serialization
106106
/// corresponds to the order of the Prices.
107107
impl CustomSerialize for PriceBid {
108108
fn to_custom_bytes(&self) -> Result<Vec<u8>, ViewError> {

linera-base/src/command.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Zefchain Labs, Inc.
22
// SPDX-License-Identifier: Apache-2.0
33

4-
//! Command functionality used for spanning child processes.
4+
//! Command functionality used for spawning child processes.
55
66
use std::{
77
path::{Path, PathBuf},

0 commit comments

Comments
 (0)