REFACTOR: removes useless assignment to local variable (#9676)

This commit is contained in:
Joffrey JAFFEUX 2020-05-07 16:35:54 +02:00 committed by GitHub
parent 08e8ae82cc
commit affc79bb68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ const inlineRule = {
token.content = content;
}
token = state.push("wrap_close", "span", -1);
state.push("wrap_close", "span", -1);
return true;
}
};