aboutsummaryrefslogtreecommitdiffstats
path: root/test/rl.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-03-20 23:55:13 -0500
committerJesse Luehrs <doy@tozt.net>2013-03-20 23:55:13 -0500
commit26e26cc83e461b61559d8d538b82ef91aadad622 (patch)
treed2af097fe154ebace130cd31813fbbef1f67adfa /test/rl.rs
parent48e6a8e80f89ff37c9221eebae254e9a6d079ee6 (diff)
downloadrust-term-26e26cc83e461b61559d8d538b82ef91aadad622.tar.gz
rust-term-26e26cc83e461b61559d8d538b82ef91aadad622.zip
standardize on cols, rows
Diffstat (limited to 'test/rl.rs')
-rw-r--r--test/rl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rl.rs b/test/rl.rs
index f2ad637..355bf9c 100644
--- a/test/rl.rs
+++ b/test/rl.rs
@@ -29,7 +29,7 @@ fn draw_ground (x: uint, y: uint) {
}
fn main () {
- let (rows, cols) = term::ios::size();
+ let (cols, rows) = term::ios::size();
do term_app {
term::ios::cbreak();