format

kud1ing
2014-05-13 13:23:52 -07:00
parent c8795d0fad
commit c78fb9236d
+2 -2
@@ -20,7 +20,7 @@ Here are some rough guidelines to Rust style. They are followed unevenly and the
* Constructors should be methods called `new` or `new_with_more_details`.
* Constructors that simply convert from another type should be methods called `from_foo`.
* When writing a binding to an external library, put the raw C bindings in a module called `ffi` (rather than `ll`). Do not create high-level bindings called `hl`.
* lifetime names should be lowercase and are often simply 'a
* lifetime names should be lowercase and are often simply `'a`.
## Trait naming
@@ -235,4 +235,4 @@ A ```for``` loop is always preferable to a ```while``` loop unless the loop coun
# Questions and TODO
* Do we want to prefer 'top-down' organization?
* Prefer unsafe pointers to unsafely transmuting borrowed pointers
* Prefer unsafe pointers to unsafely transmuting borrowed pointers