Skip to content

Commit cacdfd2

Browse files
committed
Merge pull request #174 from KimberleyCook/kim-develop
Kim develop
2 parents 9c530cd + 77a7a25 commit cacdfd2

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

html/lesson1/example.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ <h3>Owls:</h3>
4242
</div>
4343
<ul>
4444
<li>
45-
<a href="mailto:[email protected]?subject=I love owls :: Codebar">Email us</a>
45+
<a href="mailto:[email protected]?subject=I love owls :: codebar">Email us</a>
4646
</li>
4747
<li>
48-
<a href="mailto:?subject=I love owls :: Codebar">Email a friend</a>
48+
<a href="mailto:?subject=I love owls :: codebar">Email a friend</a>
4949
</li>
5050
<li>
51-
<a href="https://twitter.com/by_codebar">Twitter</a>
51+
<a href="https://twitter.com/codebar">Twitter</a>
5252
</li>
5353
</ul>
5454
</body>

html/lesson1/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,10 +338,10 @@ The difference between links and mailto links, is the content defined in the **h
338338
```html
339339
<ul>
340340
<li>
341-
<a href="mailto:[email protected]?subject=I love owls :: Codebar">Email us</a>
341+
<a href="mailto:[email protected]?subject=I love owls :: codebar">Email us</a>
342342
</li>
343343
<li>
344-
<a href="mailto:?subject=I love owls :: Codebar">Email a friend</a>
344+
<a href="mailto:?subject=I love owls :: codebar">Email a friend</a>
345345
</li>
346346
</ul>
347347
```

html/lesson1/tutorial.pt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,10 @@ A diferença entre os links e link de envio de email (mailto link) é o conteúd
337337
```html
338338
<ul>
339339
<li>
340-
<a href="mailto:[email protected]?subject=Eu amo corujas :: Codebar">Mande um email</a>
340+
<a href="mailto:[email protected]?subject=Eu amo corujas :: codebar">Mande um email</a>
341341
</li>
342342
<li>
343-
<a href="mailto:?subject=Eu amo corujas :: Codebar">Mande um email para seu amigo</a>
343+
<a href="mailto:?subject=Eu amo corujas :: codebar">Mande um email para seu amigo</a>
344344
</li>
345345
</ul>
346346
```

html/lesson2/example.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ <h3>Owls:</h3>
4545
</div>
4646
<ul id="links">
4747
<li>
48-
<a href="mailto:[email protected]?subject=I love owls :: Codebar">Email us</a>
48+
<a href="mailto:[email protected]?subject=I love owls :: codebar">Email us</a>
4949
</li>
5050
<li>
51-
<a href="mailto:?subject=I love owls :: Codebar">Email a friend</a>
51+
<a href="mailto:?subject=I love owls :: codebar">Email a friend</a>
5252
</li>
5353
<li>
5454
<a href="http://twitter.com/home?status=I love owls! via @codebar">Share your love of owls on twitter</a>

js/lesson1/tutorial.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Try them out one by one!
7676
- **strings** - group of characters, it must always be in quotes
7777

7878
```js
79-
var name = "Codebar";
79+
var name = "codebar";
8080

8181
console.log(name + " is amazing!"); // this is an expression
8282
```
@@ -116,7 +116,7 @@ That's great! We can combine strings together and add up numbers.
116116
var codebarIsAwesome = true;
117117
var weatherIsAmazing = false;
118118

119-
console.log("Is Codebar AWESOME? " + codebarIsAwesome);
119+
console.log("Is codebar AWESOME? " + codebarIsAwesome);
120120
console.log("Is the weather in London amazing? " + weatherIsAmazing);
121121
```
122122

@@ -180,7 +180,7 @@ Let's try this out.
180180

181181
```
182182
if (codebarIsAwesome) {
183-
console.log("Codebar is AWESOME!");
183+
console.log("codebar is AWESOME!");
184184
}
185185
```
186186

@@ -190,7 +190,7 @@ We can also write a condition that checks for the opposite, so, not true
190190

191191
```js
192192
if (!codebarIsAwesome) {
193-
console.log("Codebar is not so awesome :(!");
193+
console.log("codebar is not so awesome :(!");
194194
}
195195
```
196196

@@ -314,7 +314,7 @@ If you now run `hello();` you will notice that it says "Hello undefined".
314314
Ok, so let's call the function with our name.
315315

316316
```js
317-
hello("Codebar");
317+
hello("codebar");
318318
```
319319

320320
> Call the function with your name and your coach's name. Do you see the output?
@@ -426,16 +426,16 @@ With help from your coach try and write a program to do the following
426426
```
427427
Hi! My name is _name_.
428428
A couple of things about me _about you_.
429-
I have attended _number of sessions_ Codebar sessions so far!
429+
I have attended _number of sessions_ codebar sessions so far!
430430
```
431431

432432
- if the number of sessions attended is 0
433433
```
434-
This is the first time I'm attending Codebar!
434+
This is the first time I'm attending codebar!
435435
```
436436
- If the number of sessions attended is more than 0
437437
```
438-
This is not my first time here. I <3 Codebar!
438+
This is not my first time here. I <3 codebar!
439439
```
440440

441441
---

0 commit comments

Comments
 (0)