Format with rustfmt 0.7.0
diff --git a/src/strnom.rs b/src/strnom.rs
index e465b03..099dab9 100644
--- a/src/strnom.rs
+++ b/src/strnom.rs
@@ -73,7 +73,8 @@
while i < bytes.len() {
let s = input.advance(i);
if bytes[i] == b'/' {
- if s.starts_with("//") && (!s.starts_with("///") || s.starts_with("////"))
+ if s.starts_with("//")
+ && (!s.starts_with("///") || s.starts_with("////"))
&& !s.starts_with("//!")
{
if let Some(len) = s.find('\n') {
@@ -84,7 +85,8 @@
} else if s.starts_with("/**/") {
i += 4;
continue;
- } else if s.starts_with("/*") && (!s.starts_with("/**") || s.starts_with("/***"))
+ } else if s.starts_with("/*")
+ && (!s.starts_with("/**") || s.starts_with("/***"))
&& !s.starts_with("/*!")
{
let (_, com) = block_comment(s)?;