From 69ca2abd2b18025bbdbaeb60934b6796c667c573 Mon Sep 17 00:00:00 2001 From: Jeanne Date: Mon, 11 Nov 2019 08:53:51 -0500 Subject: [PATCH] Fixed typo in 'group' --- CommandRewriteDesignDoc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommandRewriteDesignDoc.md b/CommandRewriteDesignDoc.md index e2bc906..5f00670 100644 --- a/CommandRewriteDesignDoc.md +++ b/CommandRewriteDesignDoc.md @@ -161,7 +161,7 @@ ParallelDeadlineGroup(Command deadline, Command... commands) ``` The first two are self-explanatory. -`ParallelRaceGeoup` is a parallel command group that terminates when *any one* of the included commands finishes. All other commands are interrupted at that point. +`ParallelRaceGroup` is a parallel command group that terminates when *any one* of the included commands finishes. All other commands are interrupted at that point. `ParallelDeadlineGroup` is a parallel command group that terminates when a specified one of the included commands (the "deadline") finishes. All other commands that are still running at that point are interrupted.