1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-15 22:00:26 +02:00

Adjust morning-session timings downward (#1786)

Based on feedback from @marshallpierce that mornings took about 2.5
hours, this adjusts a bunch of the morning times downward to try to
match that. In other words, this is trying to make the times in the
course more accurate, rather than reducing the amount of time available
for these slides.

This also updates the `course-schedule` tool to be able to show
per-segment timings.
This commit is contained in:
Dustin J. Mitchell
2024-02-06 15:48:56 -05:00
committed by GitHub
parent e921d4bb1e
commit 9f67c9b0e7
24 changed files with 71 additions and 47 deletions

View File

@ -1,5 +1,5 @@
---
minutes: 5
minutes: 3
---
# Compiler Lints and Clippy

View File

@ -1,5 +1,5 @@
---
minutes: 10
minutes: 5
---
# Other Types of Tests

View File

@ -23,7 +23,7 @@ fn first_word(text: &str) -> &str {
}
#[cfg(test)]
mod test {
mod tests {
use super::*;
#[test]