Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.salilab.org/imp/trunk@14794 e91f8c7b-0e32-4433-a9ac-4502d39a4eab
  • Loading branch information
[email protected] authored and [email protected] committed Jul 10, 2012
1 parent 8c0c65f commit 41966b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/multifit/src/anchors_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ AnchorsData read_anchors_data(const char *txt_fn){
AnchorsData data;
in.open(txt_fn, std::fstream::in);
if (!in.good()) {
std::cerr<<"Problem openning file " << txt_fn <<
std::cerr<<"Problem opening file " << txt_fn <<
" for reading; returning empty anchors data" << std::endl;
in.close();
return data;
Expand Down
2 changes: 1 addition & 1 deletion modules/multifit/src/proteomics_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ ProteomicsData *read_proteomics_data(const char *prot_fn) {
IMP_NEW(ProteomicsData, data, ());
in.open(prot_fn, std::fstream::in);
if (! in.good()) {
IMP_WARN("Problem openning file " << prot_fn <<
IMP_WARN("Problem opening file " << prot_fn <<
" for reading; returning empty proteomics data" << std::endl);
in.close();
return data.release();
Expand Down

0 comments on commit 41966b4

Please sign in to comment.