From 35c1b9bf027b07d0e1b6782f6f60ff7acc5623cc Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 20 Jul 2021 20:14:42 -0700 Subject: [PATCH] Fix an ExecFuture typo, "preprebuilt" Summary: These commands are merely "prebuilt", not "preprebuilt". Test Plan: o.O Differential Revision: https://secure.phabricator.com/D21702 --- src/future/exec/PhutilExecutableFuture.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/future/exec/PhutilExecutableFuture.php b/src/future/exec/PhutilExecutableFuture.php index 663ce567..13e6977d 100644 --- a/src/future/exec/PhutilExecutableFuture.php +++ b/src/future/exec/PhutilExecutableFuture.php @@ -19,7 +19,7 @@ abstract class PhutilExecutableFuture extends Future { pht( 'Command (of class "%s") was constructed with a '. '"PhutilCommandString", but also passed arguments. '. - 'When using a preprebuilt command, you must not pass '. + 'When using a prebuilt command, you must not pass '. 'arguments.', get_class($this))); }