From: HarryO Date: 2001-11-17T03:31:57+09:00 Subject: [ruby-talk:25578] Re: Aliases for class methods Thanks. I put most of my comments in my reply to Dave's post, so I won't repeat that here. However, I do have one question ... > This is the same for alias, if you write > > class A > def tt > end > alias :uu :tt > end Can you explain what the difference is between alias :uu :tt and simply alias uu tt to me? Are they equivalent or is there some difference I'm missing? These ":xxx" things are something else I need to do some careful reading about!