Skip to content

Commit

Permalink
Fixing some errors reported by the CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mbodin committed Nov 30, 2023
1 parent 1efb435 commit f1434fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/svg_sigs.mli
Original file line number Diff line number Diff line change
Expand Up @@ -1116,6 +1116,8 @@ module type Wrapped_functions = sig
val string_of_orient : (Svg_types.Unit.angle option, string) Xml.W.ft

val string_of_paint : ([< Svg_types.paint], string) Xml.W.ft

let string_of_opacity : (float, string) Xml.W.ft

val string_of_fill_rule : ([< Svg_types.fill_rule], string) Xml.W.ft

Expand Down
2 changes: 1 addition & 1 deletion syntax/attribute_value.ml
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ let fill_opacity =

if v >= 0. && v <= 1. then Some v
else
Common.error loc "Value of %s must be between 0 and 1." name in
Common.error loc "Value of %s must be between 0 and 1." name
end [@metaloc loc]

let fill_rule ?separated_by:_ ?default:_ loc _name s =
Expand Down

0 comments on commit f1434fe

Please sign in to comment.