Skip to content

Commit aaa24d7

Browse files
committed
findFont: fix missing comma in example object
1 parent 85d566f commit aaa24d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/graphics/jswrap_graphics.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2638,7 +2638,7 @@ g.findFont("Hello World", {
26382638
h : 100, // optional: height available (default = screen height)
26392639
min : 10, // optional: min font height
26402640
max : 30, // optional: max font height
2641-
wrap : true // optional: allow word wrap?
2641+
wrap : true, // optional: allow word wrap?
26422642
trim : true // optional: trim to the specified height, add '...'
26432643
});
26442644
```

0 commit comments

Comments
 (0)