Skip to content

Commit f1cd210

Browse files
committed
Fixed a few typos.
1 parent 7544f87 commit f1cd210

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
VerbalExpressions v0.1
22
=====================
33

4-
## JavaScript Regular expressions made easy
5-
VerbalExpressions is a JavaScript librarty that helps to construct hard regular expressions.
4+
## JavaScript Regular Expressions made easy
5+
VerbalExpressions is a JavaScript library that helps to construct difficult regular expressions.
66

77
## How to get started
88

99
Include the library and you're good to go!
1010
```HTML
11-
<script type="text/javascript" src="VerbalExpressions.js"></script>
11+
<script src="VerbalExpressions.js"></script>
1212
```
1313

1414
## Examples
1515

16-
Here's a couple of simple examples to give an idea of how VerbalExpressions work:
16+
Here's a couple of simple examples to give an idea of how VerbalExpressions works:
1717

18-
### Testing if we have valid URL
18+
### Testing if we have a valid URL
1919

2020
```javascript
2121
// Create an example of how to test for correctly formed URLs
@@ -31,7 +31,7 @@ var tester = VerEx()
3131
// Create an example URL
3232
var testMe = "https://www.google.com";
3333

34-
// Use RegExp object's native test() -function
34+
// Use RegExp object's native test() function
3535
if( tester.test( testMe ) ) alert( "We have a correct URL "); // This output will fire
3636
else alert( "The URL is incorrect" );
3737

0 commit comments

Comments
 (0)