Skip to content

Commit ec1ea21

Browse files
committed
fix spelling and update contributors
1 parent c20370e commit ec1ea21

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Apache License
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright {yyyy} {name of copyright owner}
189+
Copyright 2017, Troy Howard
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ To run the unit tests, just open [SpecRunner.html](https://rawgithub.com/thoward
100100

101101
## Grammar
102102

103-
The parser is auto-generated from a PEG implementation in Javascript called [PEG.js](http://pegjs.majda.cz/).
103+
The parser is auto-generated from a PEG implementation in JavaScript called [PEG.js](http://pegjs.majda.cz/).
104104

105-
To test the grammar without using the generated parser, or if you want to modify it, try out [PEG.js online](http://pegjs.majda.cz/online>). This is a handy way to test an abritrary query and see what the results will be like or debug a problem with the parser for a given piece of data.
105+
To test the grammar without using the generated parser, or if you want to modify it, try out [PEG.js online](http://pegjs.majda.cz/online>). This is a handy way to test an arbitrary query and see what the results will be like or debug a problem with the parser for a given piece of data.
106106

107107

108108
## Community

package.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lucene-query-parser",
3-
"version": "1.0.1",
4-
"description": "Lucene Query Parser for Javascript created using PEG.js",
3+
"version": "1.0.7",
4+
"description": "Lucene Query Parser for JavaScript created using PEG.js",
55
"main": "lib/lucene-query-parser.js",
66
"scripts": {
77
"build": "PEG_OUT=`cat lib/lucene-query.grammar | node_modules/pegjs/bin/pegjs` && printf \"if (typeof define !== 'function') { var define = require('amdefine')(module) };\n\ndefine([], function() { \nvar module = {};\n%s\nreturn module.exports;\n});\n\" \"$PEG_OUT\" > ./lib/lucene-query-parser.js",
@@ -24,11 +24,13 @@
2424
"url": "http://github.com/thoward"
2525
},
2626
"contributors": [
27-
{
28-
"name": "Eugeny Vlasenko",
29-
"email": "mahnunchik@gmail.com",
30-
"url": "http://mahnunchik.tumblr.com/"
31-
}
27+
"Troy Howard <thoward37@gmail.com> (https://github.com/thoward)",
28+
"Bastien Vaucher (https://github.com/bastien)",
29+
"Bruce He <heganjie@gmail.com> (https://github.com/HeGanjie)",
30+
"Evgeny <mahnunchik@gmail.com> (https://github.com/mahnunchik)",
31+
"matthiasg <m.goetzke@curasystems.de> (https://github.com/matthiasg)",
32+
"Cameron Davison <cameron.davison@gmail.com> (https://github.com/a86c6f7964)",
33+
"Matthieu Maitre (https://github.com/mmaitre314)"
3234
],
3335
"license": "Apache 2.0",
3436
"bugs": {
@@ -41,4 +43,4 @@
4143
"pegjs": "0.7.x",
4244
"jasmine-node": "1.10.x"
4345
}
44-
}
46+
}

0 commit comments

Comments
 (0)