summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordcechano <dcechano@emich.edu>2023-10-14 17:25:02 -0400
committerWei Zhang <kweizh@gmail.com>2023-10-15 17:14:18 +0800
commit4bdf044b35b17c1cf4d759c79b40442a2632f3f2 (patch)
tree9fab9b1dcfd2d8c65cc4547fdb6ca788a0e131d0
parentae1a2cd964168dee240de1ba13dd85e08b9a26a4 (diff)
fix typo in link color table
-rw-r--r--Cargo.lock4
-rw-r--r--src/theme/color.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e2d5d88..9bb1d69 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -763,9 +763,9 @@ dependencies = [
[[package]]
name = "proc-macro2"
-version = "1.0.51"
+version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
+checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
dependencies = [
"unicode-ident",
]
diff --git a/src/theme/color.rs b/src/theme/color.rs
index 37afca2..3f32758 100644
--- a/src/theme/color.rs
+++ b/src/theme/color.rs
@@ -78,7 +78,7 @@ where
}
/// A struct holding the theme configuration
-/// Color table: https://upload.wikimedia.org/wikipedia/commons/1/15/Xterm_256color_chart.avg
+/// Color table: https://upload.wikimedia.org/wikipedia/commons/1/15/Xterm_256color_chart.svg
#[derive(Debug, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "kebab-case")]
#[serde(deny_unknown_fields)]