Skip to content

Commit 02164bf

Browse files
SteveL-MSFTtgauth
andauthored
Update dsc_lib/src/parser/expressions.rs
Co-authored-by: Tess Gauthier <[email protected]>
1 parent f3ed7a3 commit 02164bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsc_lib/src/parser/expressions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ impl Expression {
113113
/// This function will return an error if the expression fails to execute.
114114
pub fn invoke(&self, function_dispatcher: &FunctionDispatcher, context: &Context) -> Result<Value, DscError> {
115115
let result = self.function.invoke(function_dispatcher, context)?;
116-
// TODO: check if `secret()` funciton and don't emit result
116+
// TODO: check if `secret()` function and don't emit result
117117
let result_json = serde_json::to_string(&result)?;
118118
trace!("{}", t!("parser.expression.functionResult", results = result_json));
119119
if self.accessors.is_empty() {

0 commit comments

Comments
 (0)