Skip to content

Commit 6611aa5

Browse files
committed
jani: fix doc typo
1 parent 81c8c2d commit 6611aa5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jani/src/exprs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ pub struct NondetSelectionExpression {
184184
exp: Expression,
185185
}
186186

187-
/// Function call (needs [`super::models::ModelFeature::FunctionCalls`]).
187+
/// Function call (needs [`super::models::ModelFeature::Functions`]).
188188
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq)]
189189
#[serde(tag = "op", rename = "call")]
190190
pub struct CallExpression {
@@ -203,7 +203,7 @@ pub enum Expression {
203203
Binary(Box<BinaryExpression>),
204204
// TODO: DistributionSampling
205205
NondetSelection(Box<NondetSelectionExpression>),
206-
/// Function calls need [`super::models::ModelFeature::FunctionCalls`].
206+
/// Function calls need [`super::models::ModelFeature::Functions`].
207207
Call(Box<CallExpression>),
208208
}
209209

0 commit comments

Comments
 (0)