Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1238)

Side by Side Diff: native_client_sdk/src/doc/nacldev/clipboard_web.inc

Issue 737703002: Fixing typos / grammar in cds2014. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « native_client_sdk/src/doc/cds2014/python.rst ('k') | native_client_sdk/src/doc/nacldev/git.inc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Clipboard 1 Clipboard
2 ========= 2 =========
3 3
4 Many of the steps in this tutorial will be easier to copy and paste 4 Many of the steps in this tutorial will be easier to copy and paste
5 into the Dev Environment. 5 into the Dev Environment.
6 To copy and paste in the Dev Environment web page, 6 To copy and paste in the Dev Environment web page,
7 you can use the keyboard or the menu options under (|chrome_menu|). 7 you can use the keyboard or the menu options (top right corner |chrome_menu|).
8 8
9 .. |chrome_menu| raw:: html 9 .. |chrome_menu| raw:: html
10 10
11 ☰ → Edit 11 ☰ → Edit
12 12
13 On your platform use: 13 On your platform use:
14 14
15 * |copy_key| to Copy 15 * |copy_key| to Copy
16 * |paste_key| to Paste 16 * |paste_key| to Paste
17 17
(...skipping 13 matching lines...) Expand all
31 31
32 <span id="paste_key">Loading...</span> 32 <span id="paste_key">Loading...</span>
33 <script> 33 <script>
34 var tag = document.getElementById('paste_key'); 34 var tag = document.getElementById('paste_key');
35 if (navigator.appVersion.indexOf('Mac') >= 0) { 35 if (navigator.appVersion.indexOf('Mac') >= 0) {
36 tag.innerHTML = '&#8984;-V'; 36 tag.innerHTML = '&#8984;-V';
37 } else { 37 } else {
38 tag.innerHTML = 'Ctrl-V'; 38 tag.innerHTML = 'Ctrl-V';
39 } 39 }
40 </script> 40 </script>
OLDNEW
« no previous file with comments | « native_client_sdk/src/doc/cds2014/python.rst ('k') | native_client_sdk/src/doc/nacldev/git.inc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698