You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use ini::Ini;fnmain(){let tmp = Ini::load_from_str(r#""[options]PgpFetchDevelSuffixes = -git"#,);println!("{tmp:?}");}
Currently what it returns: Ok(Ini { sections: {None: Properties { data: {"\"[options]\nPgpFetch\nDevelSuffixes": "-git"} }} }).
The first line doesn't contains =, I think it should returns error rather than return a property key which contains \n.
The text was updated successfully, but these errors were encountered:
given the following example:
Currently what it returns:
Ok(Ini { sections: {None: Properties { data: {"\"[options]\nPgpFetch\nDevelSuffixes": "-git"} }} })
.The first line doesn't contains
=
, I think it should returns error rather than return a property key which contains\n
.The text was updated successfully, but these errors were encountered: