summaryrefslogtreecommitdiffstats
path: root/vendor/gix-config/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-config/src/lib.rs')
-rw-r--r--vendor/gix-config/src/lib.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/vendor/gix-config/src/lib.rs b/vendor/gix-config/src/lib.rs
index 9b2afd692..a62163ac3 100644
--- a/vendor/gix-config/src/lib.rs
+++ b/vendor/gix-config/src/lib.rs
@@ -1,7 +1,7 @@
//! # `gix_config`
//!
-//! This crate is a high performance `gix-config` file reader and writer. It
-//! exposes a high level API to parse, read, and write [`gix-config` files].
+//! This crate is a high performance `git-config` file reader and writer. It
+//! exposes a high level API to parse, read, and write [`git-config` files].
//!
//! This crate has a few primary offerings and various accessory functions. The
//! table below gives a brief explanation of all offerings, loosely in order
@@ -10,8 +10,8 @@
//! | Offering | Description | Zero-copy? |
//! | ------------- | --------------------------------------------------- | ----------------- |
//! | [`File`] | Accelerated wrapper for reading and writing values. | On some reads[^1] |
-//! | [`parse::State`] | Syntactic events for `gix-config` files. | Yes |
-//! | value wrappers | Wrappers for `gix-config` value types. | Yes |
+//! | [`parse::State`] | Syntactic events for `git-config` files. | Yes |
+//! | value wrappers | Wrappers for `git-config` value types. | Yes |
//!
//! This crate also exposes efficient value normalization which unescapes
//! characters and removes quotes through the `normalize_*` family of functions,
@@ -24,7 +24,7 @@
//!
//! [^1]: When read values do not need normalization and it wasn't parsed in 'owned' mode.
//!
-//! [`gix-config` files]: https://git-scm.com/docs/gix-config#_configuration_file
+//! [`git-config` files]: https://git-scm.com/docs/git-config#_configuration_file
//! [`File`]: crate::File
//! [`parse::State`]: crate::parse::Events
//! [`nom`]: https://github.com/Geal/nom