diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-01-19 19:08:08 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-01-19 19:08:49 -0800 |
| commit | 6222e98dda4bd3abfe2fdf447535111bfda4d518 (patch) | |
| tree | ac66cf030f3cf9c7110dd4c96a58bb933384291b /src/libcore/either.rs | |
| parent | 2d2bdfe84531522e4c0967b1d2c07055f299ce39 (diff) | |
| download | rust-6222e98dda4bd3abfe2fdf447535111bfda4d518.tar.gz rust-6222e98dda4bd3abfe2fdf447535111bfda4d518.zip | |
lib: ';' to ',' in enums in more places
Diffstat (limited to 'src/libcore/either.rs')
| -rw-r--r-- | src/libcore/either.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/either.rs b/src/libcore/either.rs index 578f21cbe5c..29595a37b4a 100644 --- a/src/libcore/either.rs +++ b/src/libcore/either.rs @@ -12,9 +12,9 @@ The either type */ enum t<T, U> { /* Variant: left */ - left(T); + left(T), /* Variant: right */ - right(U); + right(U), } /* Section: Operations */ |
