syntax: Rename 'module' extension to 'module_path'

This commit is contained in:
Brian Anderson 2012-07-31 16:53:14 -07:00
parent 2cfe8fb357
commit 7d18369804
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
mod m1 {
mod m2 {
fn where_am_i() -> ~str { module!{} }
fn where_am_i() -> ~str { module_path!{} }
}
}