Fix reference to nonexistent function.

Change-Id: Ib02f1945117dfd7f7d46dbf0672091830c6f3481
Reviewed-on: https://boringssl-review.googlesource.com/24904
Reviewed-by: Adam Langley <agl@google.com>
diff --git a/include/openssl/bio.h b/include/openssl/bio.h
index f87167e..5e3e2ef 100644
--- a/include/openssl/bio.h
+++ b/include/openssl/bio.h
@@ -347,7 +347,7 @@
 // Memory BIOs.
 //
 // Memory BIOs can be used as a read-only source (with |BIO_new_mem_buf|) or a
-// writable sink (with |BIO_new|, |BIO_s_mem| and |BIO_get_mem_buf|). Data
+// writable sink (with |BIO_new|, |BIO_s_mem| and |BIO_mem_contents|). Data
 // written to a writable, memory BIO can be recalled by reading from it.
 //
 // Calling |BIO_reset| on a read-only BIO resets it to the original contents.