lib: ';' to ',' in enums in more places

This commit is contained in:
Patrick Walton 2012-01-19 19:08:08 -08:00
parent 2d2bdfe845
commit 6222e98dda
5 changed files with 12 additions and 12 deletions

View file

@ -113,8 +113,8 @@ mod chained {
};
enum chain<K, V> {
present(@entry<K, V>);
absent;
present(@entry<K, V>),
absent,
}
type t<K, V> = {
@ -125,9 +125,9 @@ mod chained {
};
enum search_result<K, V> {
not_found;
found_first(uint, @entry<K,V>);
found_after(@entry<K,V>, @entry<K,V>);
not_found,
found_first(uint, @entry<K,V>),
found_after(@entry<K,V>, @entry<K,V>),
}
fn search_rem<K: copy, V: copy>(