Skip to content

Commit 4ea9287

Browse files
committed
Add missing \n's
1 parent a261fd1 commit 4ea9287

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ edition = "2018"
1010
serde = { version = "1", features = ["derive"] }
1111
serde_json = "1"
1212
tokio = { version = "1", features = ["full"] }
13-
reqwest = { version = "0.11", features = ["json"] }
13+
reqwest = { version = "0.11", features = ["json"] }

examples/sample/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ listennotes = { version = "^0", path = "../../" }
1111
reqwest = { version = "0.11", features = ["json"] }
1212
serde = { version = "1", features = ["derive"] }
1313
serde_json = "1"
14-
tokio = { version = "1", features = ["full"] }
14+
tokio = { version = "1", features = ["full"] }

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pub mod podcast_api;
1+
pub mod podcast_api;

src/podcast_api/api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ impl Api {
1010
Api::Mock => "https://listen-api-test.listennotes.com/api/v2",
1111
}
1212
}
13-
}
13+
}

src/podcast_api/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ impl AddField for Value {
7373
p[key] = json!(value);
7474
p
7575
}
76-
}
76+
}

src/podcast_api/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ impl std::fmt::Display for Error {
2929
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
3030
write!(f, "{}", *self)
3131
}
32-
}
32+
}

src/podcast_api/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ use api::Api;
66

77
pub use client::Client;
88
pub use error::Error;
9-
pub type Result<T> = std::result::Result<T, error::Error>;
9+
pub type Result<T> = std::result::Result<T, error::Error>;

0 commit comments

Comments
 (0)