Credientials -> Credentials

This commit is contained in:
Paul Woolcock
2018-08-27 05:29:35 -04:00
parent ade7b16382
commit 4ff27dd049
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -82,14 +82,14 @@ fn string_or_bool<'de, D: Deserializer<'de>>(val: D) -> ::std::result::Result<bo
})
}
pub struct CredientialsBuilder<'a> {
pub struct CredentialsBuilder<'a> {
display_name: Option<&'a str>,
note: Option<&'a str>,
avatar: Option<&'a Path>,
header: Option<&'a Path>,
}
impl<'a> CredientialsBuilder<'a> {
impl<'a> CredentialsBuilder<'a> {
pub fn into_form(self) -> Result<Form> {
let mut form = Form::new();
macro_rules! add_to_form {
+1 -1
View File
@@ -21,7 +21,7 @@ pub mod prelude {
//! structs by adding a glob import to the top of mastodon heavy
//! modules:
pub use super::{
account::{Account, CredientialsBuilder, Source},
account::{Account, CredentialsBuilder, Source},
attachment::{Attachment, MediaType},
card::Card,
context::Context,