From 2928d01084c81cec7576c2a6099b7fa99ba18fd4 Mon Sep 17 00:00:00 2001 From: Chris Malley Date: Thu, 28 Oct 2021 10:39:46 -0600 Subject: [PATCH] https://github.com/phetsims/phet-info/issues/168 --- doc/alternative-input-quick-start-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/alternative-input-quick-start-guide.md b/doc/alternative-input-quick-start-guide.md index 2dd94f2e..d3fd246a 100644 --- a/doc/alternative-input-quick-start-guide.md +++ b/doc/alternative-input-quick-start-guide.md @@ -2,7 +2,7 @@ Follow these steps to add support for alternative input to a simulation. -1. In package.json, add this to the “phet” section: +1. In your sim's package.json, add this to the “phet” section: ```json "simFeatures": { @@ -10,7 +10,7 @@ Follow these steps to add support for alternative input to a simulation. }, ``` -2. Run `grunt update`. This will generate `{{REPO}}_a11y_view.html` and modify `{{REPO}}_en.html`. +2. In yuor sim's repository, run `grunt update`. This will generate `{{REPO}}_a11y_view.html` and modify `{{REPO}}_en.html`. 3. For `LayoutBox` (and its subclasses) there is no need to specify traversal order. There is a good match between layout order and traversal order; they are typically the same. So for `LayoutBox`, you can do nothing.