Skip to content

Commit 104abee

Browse files
authored
fix: typos in documentation files (#1006)
* Update intefaces.rs * Update zkapp.rs * Update log.rs
1 parent 27445cc commit 104abee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/src/log.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// Must only be used in logging and even there it's not prefferable.
1+
/// Must only be used in logging and even there it's not preferable.
22
///
33
/// This **MUST** only be used in places which doesn't have access to any
44
/// of the following: `redux::Store`, global state where time is stored,

ledger/src/proofs/zkapp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ pub mod group {
217217
new_list
218218
}
219219

220-
// I don't take responsability for this code, see OCaml comments
220+
// I don't take responsibility for this code, see OCaml comments
221221
// https://github.com/MinaProtocol/mina/blob/78535ae3a73e0e90c5f66155365a934a15535779/src/lib/mina_base/zkapp_command.ml#L1590
222222
match (zkapp_commands, stmtss) {
223223
([] | [[]], [ _ ]) => {

ledger/src/zkapps/intefaces.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ where
554554
/// - During witness generation (in-snark), we want to evaluate both branches
555555
/// when there is a condition (`on_if`)
556556
/// - But during tx application (non-snark), we just want to evaluate 1 branch.
557-
/// Evaluating both branches in that case would be a waste of cpu/ressource
557+
/// Evaluating both branches in that case would be a waste of cpu/resource
558558
/// and would result in a slower application
559559
///
560560
/// Note that in `zkapp_logic::apply`, we don't always use that interface, we

0 commit comments

Comments
 (0)