Skip to content

Commit 935f4e4

Browse files
committed
Merge pull request #12 from dentia/patch-1
remove quotes
2 parents 807022f + d98bb3b commit 935f4e4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

12. Regular Expressions/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ _Example:_
1010
| input | output |
1111
| ------------------------------------------------------- | ------------------------------------------ |
1212
| var options = {name: 'John'};<br/>'Hello, there! Are you #{name}?'.format(options); | 'Hello, there! Are you John'|
13-
| var options = {name: 'John', age: 13};<br/>'My name is #{name} and I am #{age}-years-old').format(options);|'My name is 'John' and I am 13-years-old' |
13+
| var options = {name: 'John', age: 13};<br/>'My name is #{name} and I am #{age}-years-old').format(options);|'My name is John and I am 13-years-old' |
1414

1515
### Problem 2. HTML binding
1616
* Write a function that puts the value of an object into the content/attributes of HTML tags.
@@ -36,4 +36,4 @@ _Example 2:_
3636

3737
**output**
3838

39-
<a data-bind-content="name" data-bind-href="link" data-bind-class="name" href="http://telerikacademy.com" class="Elena">Elena</div>
39+
<a data-bind-content="name" data-bind-href="link" data-bind-class="name" href="http://telerikacademy.com" class="Elena">Elena</div>

0 commit comments

Comments
 (0)