documentation: Update Note Protocol

Using /// rather than simply //.

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-04-27 09:03:59 -04:00
parent 0f0662709e
commit 8c0c16ed87
9 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -367,7 +367,7 @@ extension FieldAccessExpression: EvaluatableExpression {
return (.Error(Error(withMessage: "\(strct) does not identify a struct")), updated_execution)
}
// TODO: Create a default value?
/// TODO: Create a default value?
guard let value = struct_strct.get(field: self.field) else {
return (.Error(Error(withMessage: "Missing value")), updated_execution)
}