about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2020-09-14 16:37:37 -0300
committerJoshua Nelson <joshua@yottadb.com>2020-09-15 18:13:33 -0400
commit699c4ea15d3abbea577b4d3e16e57f4d64ecf8c9 (patch)
treeb4bad28aebb5c3e3bee1be295f96f82dbeb25199 /src/doc/rustc-dev-guide
parent1fce3538fe7573652c4b484d9a98fd1cd4b3f767 (diff)
downloadrust-699c4ea15d3abbea577b4d3e16e57f4d64ecf8c9.tar.gz
rust-699c4ea15d3abbea577b4d3e16e57f4d64ecf8c9.zip
Add Salsa In More Depth lecture
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/salsa.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/salsa.md b/src/doc/rustc-dev-guide/src/salsa.md
index 68e92b29fd3..8e2ba6dcb51 100644
--- a/src/doc/rustc-dev-guide/src/salsa.md
+++ b/src/doc/rustc-dev-guide/src/salsa.md
@@ -2,7 +2,10 @@
 
 This chapter is based on the explanation given by Niko Matsakis in this
 [video](https://www.youtube.com/watch?v=_muY4HjSqVw) about
-[Salsa](https://github.com/salsa-rs/salsa).
+[Salsa](https://github.com/salsa-rs/salsa). To find out more you may
+want to watch [Salsa In More
+Depth](https://www.youtube.com/watch?v=i_IhACacPRY), also by Niko
+Matsakis.
 
 > Salsa is not used directly in rustc, but it is used extensively for
 > rust-analyzer and may be integrated into the compiler in the future.