Fix a stupid copy/paste syntax error.
This commit is contained in:
parent
fc7a0517d3
commit
b8b0494c19
5 changed files with 5 additions and 5 deletions
|
|
@ -210,7 +210,7 @@ pub struct Jingle {
|
|||
|
||||
pub fn parse_jingle(root: &Element) -> Result<Jingle, Error> {
|
||||
if !root.is("jingle", JINGLE_NS) {
|
||||
return Err(Error::ParseError("This is not a Jingle element.")),
|
||||
return Err(Error::ParseError("This is not a Jingle element."));
|
||||
}
|
||||
|
||||
let mut contents: Vec<Content> = vec!();
|
||||
|
|
|
|||
Loading…
Reference in a new issue