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
|
|
@ -30,7 +30,7 @@ pub struct Disco {
|
|||
|
||||
pub fn parse_disco(root: &Element) -> Result<Disco, Error> {
|
||||
if !root.is("query", DISCO_INFO_NS) {
|
||||
return Err(Error::ParseError("This is not a disco#info element.")),
|
||||
return Err(Error::ParseError("This is not a disco#info element."));
|
||||
}
|
||||
|
||||
let mut identities: Vec<Identity> = vec!();
|
||||
|
|
|
|||
Loading…
Reference in a new issue