7474 * 2. Output parsed BibTex entries as HTML, RTF, or BibTex.
7575 *
7676 *
77- * The following usage instructions have been copyed and adapted from the PHP instructions located
77+ * The following usage instructions have been copied and adapted from the PHP instructions located
7878 * at http://pear.php.net/manual/en/package.structures.structures-bibtex.intro.php
7979 * Introduction
8080 * --------------
143143 * Author
144144 * ------
145145 * As described before the authors are stored in a list. Every entry
146- * representing one author as a has table. The hash table consits of four
146+ * representing one author as a has table. The hash table consists of four
147147 * keys: first, von, last and jr. The keys are explained in the following
148148 * list:
149149 *
@@ -934,7 +934,7 @@ BibTex.prototype = {
934934 }
935935 */
936936 /**
937- * Parses what is stored in content and clears the content if the parsing is successfull +
937+ * Parses what is stored in content and clears the content if the parsing is successful +
938938 *
939939 * @access public
940940 * @return boolean true on success and PEAR_Error if there was a problem
@@ -1045,8 +1045,8 @@ BibTex.prototype = {
10451045 * then you don have to worry about memory+
10461046 * Then the last ',' is searched and the field extracted from that+
10471047 * Again the entry is shortened+
1048- * Finally after all field:value pairs the cite and type is extraced and the
1049- * authors are splitted +
1048+ * Finally after all field:value pairs the cite and type is extracted and the
1049+ * authors are split +
10501050 * If there is a problem false is returned+
10511051 *
10521052 * @access private
@@ -1171,7 +1171,7 @@ BibTex.prototype = {
11711171 if ( 0 != open ) {
11721172 ret = false ;
11731173 }
1174- //There is still the posibility that the entry is delimited by double quotes+
1174+ //There is still the possibility that the entry is delimited by double quotes+
11751175 //Then it is possible that the braces are equal even if the '=' is in an equation+
11761176 if ( ret ) {
11771177 entrycopy = trim ( entry ) ;
@@ -1229,7 +1229,7 @@ BibTex.prototype = {
12291229 var ret = false ;
12301230 var opening = array_keys ( this . _delimiters ) ;
12311231 var closing = array_values ( this . _delimiters ) ;
1232- //Getting the value (at is only allowd in values)
1232+ //Getting the value (at is only allowed in values)
12331233 if ( strrpos ( entry , '=' ) !== false ) {
12341234 position = strrpos ( entry , '=' ) ;
12351235 proceed = true ;
@@ -1626,7 +1626,7 @@ BibTex.prototype = {
16261626 /**
16271627 * Returns the author formatted
16281628 *
1629- * The Author is formatted as setted in the authorstring
1629+ * The Author is formatted as set in the authorstring
16301630 *
16311631 * @access private
16321632 * @param array array Author array
@@ -2890,4 +2890,4 @@ var bibtexify = (function($) {
28902890 $ . get ( bibsrc , callbackHandler , "text" ) ;
28912891 }
28922892 } ;
2893- } ) ( jQuery ) ;
2893+ } ) ( jQuery ) ;
0 commit comments