Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update keyboard shortcuts for Mac #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/pages/debugger/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const Tutorial = () => (
<p>
Before diving in, let’s take a look at the Debugger interface. Hit{' '}
<span className="shortcut">option</span> + <span className="shortcut">command</span> +{' '}
<span className="shortcut">S</span> on Mac or <span className="shortcut">shift</span> +{' '}
<span className="shortcut">Z</span> on Mac or <span className="shortcut">shift</span> +{' '}
<span className="shortcut">ctrl</span> + <span className="shortcut">S</span> on Windows to
open the Debugger.{' '}
</p>
Expand Down Expand Up @@ -97,7 +97,7 @@ const Homework = () => (
</p>
<p>
Give it a try! The link below will bring you to a to-do app that is using a minified
JavaScript file. Simply:
JavaScript file:
</p>
<ol className="list">
<li>
Expand All @@ -111,12 +111,12 @@ const Homework = () => (
</li>
<li>
Open Debugger (<span className="shortcut">option</span> +{' '}
<span className="shortcut">command</span> + <span className="shortcut">S</span> on Mac or{' '}
<span className="shortcut">command</span> + <span className="shortcut">Z</span> on Mac or{' '}
<span className="shortcut">shift</span> + <span className="shortcut">control</span> +{' '}
<span className="shortcut">S</span> on Windows)
</li>
<li>Find and click on app.js in the source list pane</li>
<li>Locate and click on the format icon</li>
<li>Find and click on app.js in the source list pane on the left</li>
<li>When app.js opens in the central source pane, right click on the `app.js` tab and select `Pretty Print Source`</li>
</ol>
</DevHomework>
);
Expand Down