Skip to content

Commit cd4e99c

Browse files
authored
Merge pull request #5085 from shangchengbabaiban/develop
chore: fix some comments
2 parents 09c4b06 + 42bfde0 commit cd4e99c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

clarity/src/vm/ast/definition_sorter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ impl DefinitionSorter {
173173
return Ok(());
174174
}
175175
DefineFunctions::Map => {
176-
// Args: [name, key, value]: with key value being potentialy tuples
176+
// Args: [name, key, value]: with key value being potentially tuples
177177
if function_args.len() == 3 {
178178
self.probe_for_dependencies(
179179
function_args[1],

contrib/boot-contracts-unit-tests/tests/misc.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ describe("test `get-total-ustx-stacked`", () => {
575575
expect(response.result).toBeUint(amount * 3n);
576576
});
577577

578-
it("expires stacking after the stacking duration has finsihed", () => {
578+
it("expires stacking after the stacking duration has finished", () => {
579579
const amount = getStackingMinimum() * 2n;
580580

581581
stackers.forEach((stacker, i) => {

stacks-signer/src/client/stacks_client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ impl StacksClient {
556556
Ok(stackers_response.stacker_set.signers)
557557
}
558558

559-
/// Retreive the current pox data from the stacks node
559+
/// Retrieve the current pox data from the stacks node
560560
pub fn get_pox_data(&self) -> Result<RPCPoxInfoData, ClientError> {
561561
debug!("Getting pox data...");
562562
#[cfg(feature = "monitoring_prom")]

0 commit comments

Comments
 (0)