Fix if/for/while( in docs
[openssl.git] / doc / crypto / BIO_find_type.pod
index b87e87b9fdb77ec9bc0e28cfc0d90b05cf087c89..ff7b4886092009bb08d08e2df2a5e413fcdee92c 100644 (file)
@@ -49,12 +49,12 @@ Traverse a chain looking for digest BIOs:
 
  do {
         btmp = BIO_find_type(btmp, BIO_TYPE_MD);
-        if(btmp == NULL) break; /* Not found */
+        if (btmp == NULL) break; /* Not found */
         /* btmp is a digest BIO, do something with it ...*/
         ...
 
         btmp = BIO_next(btmp);
- } while(btmp);
+ } while (btmp);
 
 
 =head1 COPYRIGHT