Skip to content

Commit

Permalink
Remove printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
chinedufn committed Jun 3, 2024
1 parent a214cce commit bc6a1a5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/html-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "html-macro"
version = "0.2.4"
version = "0.2.5"
description = "html macro"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
Expand Down
2 changes: 0 additions & 2 deletions crates/html-macro/src/tag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,8 @@ fn parse_attributes(input: &mut ParseStream) -> Result<Vec<Attr>> {
{
let (key, key_span) = parse_attribute_key(input)?;

println!("PARSING EQUALS");
// =
input.parse::<Token![=]>()?;
println!("PARSED EQUALS");

// Continue parsing tokens until we see the next attribute or a closing > tag
let mut value_tokens = TokenStream::new();
Expand Down
2 changes: 1 addition & 1 deletion crates/percy-dom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "percy-dom"
version = "0.9.8"
version = "0.9.9"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
description = "A standalone Virtual DOM creation, diffing and patching implementation"
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
Expand Down

0 comments on commit bc6a1a5

Please sign in to comment.