Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Sep 11, 2024
1 parent 5cc853a commit 162f339
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,12 @@ fetch(url.href)
group_add_face(
group,
0 /* regular */,
deferred_face_new(font_name.ptr, font_name.len, 0 /* text */)
deferred_face_new(font_name.ptr, font_name.len, 0 /* text */),
);
group_add_face(
group,
0 /* regular */,
deferred_face_new(font_name.ptr, font_name.len, 1 /* emoji */)
deferred_face_new(font_name.ptr, font_name.len, 1 /* emoji */),
);

// Initialize our sprite font, without this we just use the browser.
Expand Down Expand Up @@ -168,7 +168,7 @@ fetch(url.href)
group_cache,
cp,
0,
-1 /* best choice */
-1 /* best choice */,
);
group_cache_render_glyph(group_cache, font_idx, cp, -1);

Expand Down

0 comments on commit 162f339

Please sign in to comment.