Skip to content
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.

Commit

Permalink
fix: missing bracket (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
fourdim authored Aug 2, 2023
1 parent 7cac8bf commit c4c37ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "intl-segmenter-polyfill-rs"
description = "A polyfill for Intl.Segmenter"
version = "0.1.2"
version = "0.1.3"
edition = "2018"
homepage = "https://github.com/toeverything/intl-segmenter-polyfill-rs"
repository = "https://github.com/toeverything/intl-segmenter-polyfill-rs"
Expand Down
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub fn set_panic_hook() {
}

#[wasm_bindgen(inline_js = "
function __make_iter(proto) { proto[Symbol.iterator] = function () { return this; };
function __make_iter(proto) { proto[Symbol.iterator] = function () { return this; }};
module.exports = {
__make_iter
}
Expand Down

0 comments on commit c4c37ec

Please sign in to comment.