File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -410,18 +410,14 @@ optionalt<exprt> string_to_upper_case_builtin_functiont::eval(
410
410
return make_string (input_opt.value (), type);
411
411
}
412
412
413
- // / Set of constranits ensuring `result` corresponds to `input` in which
413
+ // / Set of constraints ensuring `result` corresponds to `input` in which
414
414
// / lowercase characters of Basic Latin and Latin-1 supplement of unicode
415
415
// / have been converted to uppercase. These constraints are:
416
416
// / 1. res.length = str.length && return_code = 0
417
417
// / 2. forall i < str.length.
418
418
// / is_lower_case(str[i]) ? res[i] = str[i] - 0x20 : res[i] = str[i]
419
419
// /
420
420
// / \param fresh_symbol: generator of fresh symbols
421
- // / \param res: array of characters expression
422
- // / \param str: array of characters expression
423
- // / \return integer expression which is different from `0` when there is an
424
- // / exception to signal
425
421
string_constraintst string_to_upper_case_builtin_functiont::constraints (
426
422
symbol_generatort &fresh_symbol) const
427
423
{
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ class string_to_upper_case_builtin_functiont
251
251
252
252
string_constraintst constraints (class symbol_generatort &fresh_symbol) const ;
253
253
254
- // / \copydoc constraints(class symbol_generatort&)
254
+ // / \copydoc constraints(symbol_generatort&)
255
255
string_constraintst
256
256
constraints (string_constraint_generatort &generator) const override
257
257
{
You can’t perform that action at this time.
0 commit comments