aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authoratouchet <alextouchet@outlook.com>2020-05-27 20:13:15 -0700
committeratouchet <alextouchet@outlook.com>2020-05-27 20:27:15 -0700
commita33c75cbecb10dd6aa80289b2a35c18db207652b (patch)
tree11a2cbf5883e25f90f065c0c4d84b4c88512a536 /docs
parent693ff298582d3037afd145563c234ef5ceb6d42b (diff)
downloadservo-a33c75cbecb10dd6aa80289b2a35c18db207652b.tar.gz
servo-a33c75cbecb10dd6aa80289b2a35c18db207652b.zip
Rename glutin port to winit
Diffstat (limited to 'docs')
-rw-r--r--docs/HACKING_QUICKSTART.md2
-rw-r--r--docs/ORGANIZATION.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/HACKING_QUICKSTART.md b/docs/HACKING_QUICKSTART.md
index f669bd3815a..025120aaa41 100644
--- a/docs/HACKING_QUICKSTART.md
+++ b/docs/HACKING_QUICKSTART.md
@@ -102,7 +102,7 @@ See [Cargo's documentation about Cargo.toml and Cargo.lock files](https://doc.ru
As explained above, Servo depends on a lot of libraries, which makes it very modular. While working on a bug in Servo, you'll often end up in one of its dependencies. You will then want to compile your own version of the dependency (and maybe compiling against the HEAD of the library will fix the issue!).
-For example, I'm trying to bring some cocoa events to Servo. The Servo window on Desktop is constructed with a library named [Glutin](https://github.com/tomaka/glutin). Glutin itself depends on a cocoa library named [cocoa-rs](https://github.com/servo/cocoa-rs). When building Servo, magically, all these dependencies are downloaded and built for you. But because I want to work on this cocoa event feature, I want Servo to use my own version of *glutin* and *cocoa-rs*.
+For example, I'm trying to bring some cocoa events to Servo. The Servo window on Desktop is constructed with a library named [winit](https://github.com/rust-windowing/winit). winit itself depends on a cocoa library named [cocoa-rs](https://github.com/servo/cocoa-rs). When building Servo, magically, all these dependencies are downloaded and built for you. But because I want to work on this cocoa event feature, I want Servo to use my own version of *winit* and *cocoa-rs*.
This is how my projects are laid out:
diff --git a/docs/ORGANIZATION.md b/docs/ORGANIZATION.md
index b08df989d94..690b7c59cf3 100644
--- a/docs/ORGANIZATION.md
+++ b/docs/ORGANIZATION.md
@@ -63,7 +63,7 @@
* mach
* A command-line tool to help with developer tasks.
* ports
- * glutin
+ * winit
* Embedding implementation for the `winit` windowing library.
* python
* servo