Skip to content

Commit 1d910a6

Browse files
committed
fix: various small fixes
1 parent 664bdc6 commit 1d910a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/build/must-get-host-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ pub fn validate_not_spamming_movies(action: Action) -> ExternResult<ValidateCall
118118
None
119119
})
120120
// Next, only take the ones within the spam window.
121-
.take_while(|a| a.timestamp() >= take_until_timestamp)
121+
.take_while(|a| a.timestamp() >= lower_bound)
122122
// Finally, count the matching actions.
123123
.count();
124124

src/pages/resources/glossary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ The act of relying on inductive reasoning within a [validation function](#valida
525525

526526
#### Init callback
527527

528-
A function in a [DNA](#dna) that the [conductor](#conductor) executes when an [agent](#agent) calls a [cell](#cell) for the first time, and after they have joined the DNA's [network](#network). This can be used to set up initial [source chain](#source-chain) [#state](#state-transition), etc.
528+
A function in a [DNA](#dna) that the [conductor](#conductor) executes when an [agent](#agent) calls a [cell](#cell) for the first time, and after they have joined the DNA's [network](#network). This can be used to set up initial [source chain](#source-chain) [state](#state-transition), etc.
529529

530530
#### Init complete action
531531

0 commit comments

Comments
 (0)