Skip to content

Commit f2610ab

Browse files
authored
Merge pull request #3967 from meeroslaph/patch-1
Part 0 material clarifications
2 parents 7c5d886 + 3c8c629 commit f2610ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/0/en/part0b.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Code will conform to contemporary best practices from [part 1](/en/part1) onward
1515

1616
Open the [example application](https://studies.cs.helsinki.fi/exampleapp) in your browser. Sometimes this takes a while.
1717

18-
The course material is done with the Chrome browser.
18+
The course material was done with and adapted for the Chrome browser.
1919

2020
**The 1st rule of web development**: Always keep the Developer Console open on your web browser. On macOS, open the console by pressing _fn_-_F12_ or _option-cmd-i_ simultaneously. On Windows or Linux, open the console by pressing _Fn_-_F12_ or _ctrl-shift-i_ simultaneously. The console can also be opened via the [context menu](https://en.wikipedia.org/wiki/Menu_key).
2121

@@ -308,7 +308,7 @@ Document Object Model, or [DOM](https://en.wikipedia.org/wiki/Document_Object_Mo
308308
309309
The JavaScript code introduced in the previous chapter used the DOM-API to add a list of notes to the page.
310310
311-
The following code creates a new node to the variable <em>ul</em>, and adds some child nodes to it:
311+
The following code creates a new node, assigns it to the variable <em>ul</em>, and adds some child nodes to it:
312312
313313
```js
314314
var ul = document.createElement('ul')
@@ -383,7 +383,7 @@ A class selector definition always starts with a period and contains the name of
383383
384384
Classes are [attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/class), which can be added to HTML elements.
385385
386-
CSS attributes can be examined on the <i>elements</i> tab of the console:
386+
CSS attributes can be examined in the <i>Elements</i> tab of the console:
387387
388388
![Screenshot of the Elements tab on the developer console](../../images/0/17e.png)
389389

0 commit comments

Comments
 (0)