Skip to content

Commit f1434fe

Browse files
committed
Fixing some errors reported by the CI.
1 parent 1efb435 commit f1434fe

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/svg_sigs.mli

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1116,6 +1116,8 @@ module type Wrapped_functions = sig
11161116
val string_of_orient : (Svg_types.Unit.angle option, string) Xml.W.ft
11171117

11181118
val string_of_paint : ([< Svg_types.paint], string) Xml.W.ft
1119+
1120+
let string_of_opacity : (float, string) Xml.W.ft
11191121

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

syntax/attribute_value.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ let fill_opacity =
506506

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

512512
let fill_rule ?separated_by:_ ?default:_ loc _name s =

0 commit comments

Comments
 (0)