about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoy Wellington Ⅳ <cactus_hugged@yahoo.com>2023-01-21 17:34:30 -0500
committerRoy Wellington Ⅳ <cactus_hugged@yahoo.com>2023-01-21 17:34:30 -0500
commitfa214c3b11f6444c268b4ca7d93219df3dc020a5 (patch)
tree3e2d841857ddd5883f63b35c6079dcaabf6be659
parentee9e8cd0ec8c204d6c51acbc3663c40d089a3e24 (diff)
downloadrust-fa214c3b11f6444c268b4ca7d93219df3dc020a5.tar.gz
rust-fa214c3b11f6444c268b4ca7d93219df3dc020a5.zip
Fix typo in comment
-rw-r--r--src/librustdoc/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/config.rs b/src/librustdoc/config.rs
index 56b40d8c66b..2c514a0c826 100644
--- a/src/librustdoc/config.rs
+++ b/src/librustdoc/config.rs
@@ -509,7 +509,7 @@ impl Options {
                 // these values up both in `dataset` and in the storage API, so it needs to be able
                 // to convert the names back and forth.  Despite doing this kebab-case to
                 // StudlyCaps transformation automatically, the JS DOM API does not provide a
-                // mechanism for doing the just transformation on a string.  So we want to avoid
+                // mechanism for doing just the transformation on a string.  So we want to avoid
                 // the StudlyCaps representation in the `dataset` property.
                 //
                 // We solve this by replacing all the `-`s with `_`s.  We do that here, when we