Skip to content

Commit bbfec64

Browse files
committed
doc: clarify callees order
1 parent 0e59612 commit bbfec64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/functions/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub struct Function {
5252
/// Raw function string, including name, signature, and body.
5353
func: String,
5454
/// Recursive fnction calls inside the body.
55-
/// This set has insertion order, which is nice to check out call contexts.
55+
/// The elements are sorted by file path and fn source code to keep hash value stable.
5656
callees: IndexSet<Instance>,
5757
}
5858

src/functions/serialization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub struct SerFunction {
1919
attrs: Vec<String>,
2020
/// Raw function string, including name, signature, and body.
2121
func: String,
22-
/// Recursive fnction calls inside the body.
22+
/// Recursive function calls inside the proof.
2323
callees: Vec<Callee>,
2424
}
2525

0 commit comments

Comments
 (0)