Skip to content

Commit 28c75a9

Browse files
camelidJoshua Nelson
authored and
Joshua Nelson
committed
Update some docs to use "docs.rs"
1 parent 52e1245 commit 28c75a9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/db/file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Simple module to store files in database.
22
//!
3-
//! cratesfyi is generating more than 5 million files, they are small and mostly html files.
3+
//! docs.rs is generating more than 5 million files, they are small and mostly html files.
44
//! They are using so many inodes and it is better to store them in database instead of
55
//! filesystem. This module is adding files into database and retrieving them.
66

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Errors used in cratesfyi
1+
//! Errors used in docs.rs
22
33
use std::result::Result as StdResult;
44

src/utils/github_updater.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const APP_USER_AGENT: &str = concat!(
1717
include_str!(concat!(env!("OUT_DIR"), "/git_version"))
1818
);
1919

20-
/// Fields we need use in cratesfyi
20+
/// Fields we need in docs.rs
2121
#[derive(Debug)]
2222
struct GitHubFields {
2323
description: String,

src/utils/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Various utilities for cratesfyi
1+
//! Various utilities for docs.rs
22
33
pub(crate) use self::cargo_metadata::{CargoMetadata, Package as MetadataPackage};
44
pub(crate) use self::copy::copy_doc_dir;

src/web/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Web interface of cratesfyi
1+
//! Web interface of docs.rs
22
33
pub(crate) mod page;
44

0 commit comments

Comments
 (0)