Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
arose committed Oct 15, 2016
1 parent 18a4913 commit e1a76e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/parser/cif-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function parseChemComp( cif, structure, structureBuilder ){

atomStore.growIfFull();

atomname = cca.atom_id[ i ].replace( reDoubleQuote, '' );;
atomname = cca.atom_id[ i ].replace( reDoubleQuote, '' );
element = cca.type_symbol[ i ];

atomnameDict[ atomname ] = i;
Expand All @@ -95,7 +95,7 @@ function parseChemComp( cif, structure, structureBuilder ){

atomStore.growIfFull();

atomname = cca.atom_id[ i ].replace( reDoubleQuote, '' );;
atomname = cca.atom_id[ i ].replace( reDoubleQuote, '' );
element = cca.type_symbol[ i ];

atomStore.atomTypeId[ j ] = atomMap.add( atomname, element );
Expand Down Expand Up @@ -125,8 +125,8 @@ function parseChemComp( cif, structure, structureBuilder ){

for( i = 0; i < n; ++i ){

atomname1 = ccb.atom_id_1[ i ].replace( reDoubleQuote, '' );;
atomname2 = ccb.atom_id_2[ i ].replace( reDoubleQuote, '' );;
atomname1 = ccb.atom_id_1[ i ].replace( reDoubleQuote, '' );
atomname2 = ccb.atom_id_2[ i ].replace( reDoubleQuote, '' );
valueOrder = ccb.value_order[ i ].toLowerCase();

if( valueOrder === "?" ){
Expand Down

0 comments on commit e1a76e8

Please sign in to comment.