Fix a stupid copy/paste syntax error.

This commit is contained in:
Emmanuel Gil Peyrot 2017-04-20 00:14:29 +01:00
parent fc7a0517d3
commit b8b0494c19
5 changed files with 5 additions and 5 deletions

View file

@ -53,7 +53,7 @@ pub struct DataForm {
pub fn parse_data_form(root: &Element) -> Result<DataForm, Error> {
if !root.is("x", DATA_FORMS_NS) {
return Err(Error::ParseError("This is not a data form element.")),
return Err(Error::ParseError("This is not a data form element."));
}
let type_: DataFormType = match root.attr("type") {

View file

@ -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!();

View file

@ -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!();

View file

@ -19,7 +19,7 @@ pub struct MediaElement {
pub fn parse_media_element(root: &Element) -> Result<MediaElement, Error> {
if !root.is("media", MEDIA_ELEMENT_NS) {
return Err(Error::ParseError("This is not a media element.")),
return Err(Error::ParseError("This is not a media element."));
}
let width = root.attr("width").and_then(|width| width.parse().ok());

View file

@ -10,7 +10,7 @@ pub struct Ping {
pub fn parse_ping(root: &Element) -> Result<Ping, Error> {
if !root.is("ping", PING_NS) {
return Err(Error::ParseError("This is not a ping element.")),
return Err(Error::ParseError("This is not a ping element."));
}
for _ in root.children() {