about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorİsmail Arılık <arilik.ismail@gmail.com>2023-07-21 16:07:51 +0300
committerTshepang Mbambo <tshepang@gmail.com>2023-07-22 14:16:37 +0200
commitb92001e36f6ddc9a644b623a0c4aea129b29c4ac (patch)
tree72072278d2c5bbc534cedece8d2b4fbd6f3ebd87 /src/doc/rustc-dev-guide
parent496e3ab314bb8993469b05309d2c2a00085ffa1c (diff)
downloadrust-b92001e36f6ddc9a644b623a0c4aea129b29c4ac.tar.gz
rust-b92001e36f6ddc9a644b623a0c4aea129b29c4ac.zip
refactor(git.md): make git-scm links clickable
Some of them wasn't clickable.
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/git.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/git.md b/src/doc/rustc-dev-guide/src/git.md
index a428850a058..d8fa47c3f0e 100644
--- a/src/doc/rustc-dev-guide/src/git.md
+++ b/src/doc/rustc-dev-guide/src/git.md
@@ -167,7 +167,7 @@ error: cannot rebase: You have unstaged changes.
 error: Please commit or stash them.
 ```
 
-(See https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states for the difference between the two.)
+(See [https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states](https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states) for the difference between the two.)
 
 This means you have made changes since the last time you made a commit. To be able to rebase, either
 commit your changes, or make a temporary commit called a "stash" to have them still not be commited
@@ -178,7 +178,7 @@ will prevent the "cannot rebase" error in nearly all cases:
 git config --global rebase.autostash true
 ```
 
-See https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning for more info about stashing.
+See [https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning](https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning) for more info about stashing.
 
 ### I see 'Untracked Files: src/stdarch'?