doc typos (#352)

This commit is contained in:
Michael Kirk 2020-09-28 17:17:22 -07:00 committed by GitHub
parent 5813603594
commit 27b25a71a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
// Heuristically generate a ControlTrafficSignal just based on the roads leading to each traffic
// isignal.
// signal.
use crate::{
ControlTrafficSignal, IntersectionCluster, IntersectionID, Map, Movement, MovementID,

View File

@ -1,5 +1,5 @@
// A traffic signal consists of a sequence of Stages that repeat in a cycle. Most Stages last for a
// fixed duration. During a singe Stage, some movements are protected (can proceed with the highest
// fixed duration. During a single Stage, some movements are protected (can proceed with the highest
// priority), while others are permitted (have to yield before proceeding).
use crate::make::traffic_signals::{brute_force, get_possible_policies};