Skip to content

Commit

Permalink
fix a documentation bug in using.dox as pointed by jeff zhang
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Bickson committed Nov 15, 2013
1 parent 6549a97 commit fa08884
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/graphlab/docs/using.dox
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,11 @@
while(1){
graphlab::vertex_id_type other_vid;
strm >> other_vid;
if (strm.fail()) break;
if (strm.fail())
return false;
graph.add_edge(vid, other_vid);
}
retun true;
}
\endcode

Expand Down

0 comments on commit fa08884

Please sign in to comment.