about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorDamien Grassart <damien@grassart.com>2014-09-12 09:10:03 +0200
committerDamien Grassart <damien@grassart.com>2014-09-12 09:10:03 +0200
commitd4b2edc3eeaa5b5fd4f83533c7ffe9f56744ba55 (patch)
treec76e0f4f8401d9006842cd4c591daf56b8d5676b /src/doc
parent0eedec560cc39231c3475535176abf29a04c98f1 (diff)
Use a space after colons per the Rust coding style:
https://github.com/rust-lang/rust-guidelines/blob/master/style/whitespace.md
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/guide-ffi.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/guide-ffi.md b/src/doc/guide-ffi.md
index 237cc86e51d..14e60b5ba08 100644
--- a/src/doc/guide-ffi.md
+++ b/src/doc/guide-ffi.md
@@ -209,7 +209,7 @@ A basic example is:
 Rust code:
 
 ~~~~no_run
-extern fn callback(a:i32) {
+extern fn callback(a: i32) {
     println!("I'm called from C with value {0}", a);
 }
 
@@ -269,7 +269,7 @@ struct RustObject {
     // other members
 }
 
-extern "C" fn callback(target: *mut RustObject, a:i32) {
+extern "C" fn callback(target: *mut RustObject, a: i32) {
     println!("I'm called from C with value {0}", a);
     unsafe {
         // Update the value in RustObject with the value received from the callback