diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-10-02 13:07:22 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-10-02 13:07:22 +0530 |
| commit | 66ab1b01c176fd8256b2a47befe3b4edce46510f (patch) | |
| tree | 139677579eec8db4458d18e191f30e5c1c5d177f /src/libstd | |
| parent | 3234ec14552cb155d4fbedc6dce29ae0252c5910 (diff) | |
| parent | 25c21342c62cf92d709ea3df493cfbb3718e5d0c (diff) | |
| download | rust-66ab1b01c176fd8256b2a47befe3b4edce46510f.tar.gz rust-66ab1b01c176fd8256b2a47befe3b4edce46510f.zip | |
Rollup merge of #28788 - tsurai:master, r=bluss
Please correct me if I confused something but the documentation for ```into_ptr``` and ```into_raw``` of ```CString``` seem to be swapped as the docs for ```into_ptr``` mentions ```into_raw``` and vice versa. Update: I actually meant ```into_ptr``` and ```into_raw``` NOT ```from_*```
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/ffi/c_str.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/ffi/c_str.rs b/src/libstd/ffi/c_str.rs index 7c9c2066ae9..6b7ecaa77d1 100644 --- a/src/libstd/ffi/c_str.rs +++ b/src/libstd/ffi/c_str.rs @@ -206,7 +206,7 @@ impl CString { /// Retakes ownership of a CString that was transferred to C. /// /// The only appropriate argument is a pointer obtained by calling - /// `into_ptr`. The length of the string will be recalculated + /// `into_raw`. The length of the string will be recalculated /// using the pointer. #[unstable(feature = "cstr_memory2", reason = "recently added", issue = "27769")] @@ -245,11 +245,11 @@ impl CString { /// Transfers ownership of the string to a C caller. /// /// The pointer must be returned to Rust and reconstituted using - /// `from_ptr` to be properly deallocated. Specifically, one + /// `from_raw` to be properly deallocated. Specifically, one /// should *not* use the standard C `free` function to deallocate /// this string. /// - /// Failure to call `from_ptr` will lead to a memory leak. + /// Failure to call `from_raw` will lead to a memory leak. #[stable(feature = "cstr_memory", since = "1.4.0")] pub fn into_raw(self) -> *mut libc::c_char { Box::into_raw(self.inner) as *mut libc::c_char |
