From 920d3185f6402e5cd02c25f50feff7eb438e4933 Mon Sep 17 00:00:00 2001 From: mcpherrinm Date: Sat, 1 Feb 2014 11:00:25 -0800 Subject: [PATCH] Updated Note style guide (markdown) --- Note-style-guide.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Note-style-guide.md b/Note-style-guide.md index 3003544..97ad2f3 100644 --- a/Note-style-guide.md +++ b/Note-style-guide.md @@ -16,6 +16,7 @@ Here are some rough guidelines to Rust style. They are followed unevenly and the * Constructors are methods called `new` or `new_with_more_details`. * Constructors that simply convert from another type are 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 are lowercase and are often simply 'a ## Trait naming