Skip to content

Commit 1370d41

Browse files
committed
Merge pull request #37 from dorightdigital/master
Corrected Syntax - missing parenthesis
2 parents 30f3176 + 6f3e658 commit 1370d41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jsmockito.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
* } catch (e) {
109109
* ex = e;
110110
* }
111-
* assertThat(ex, equalTo('An exception');
111+
* assertThat(ex, equalTo('An exception'));
112112
*
113113
* //the following invokes the stub method, which returns 3
114114
* assertThat(mockedArray.slice(2), equalTo(3));
@@ -162,7 +162,7 @@
162162
* } catch (e) {
163163
* ex = e;
164164
* }
165-
* assertThat(ex, equalTo('An exception');
165+
* assertThat(ex, equalTo('An exception'));
166166
*
167167
* //the following invokes the stub method, which returns 3
168168
* assertThat(mockedFunc(2), equalTo(3));

0 commit comments

Comments
 (0)