Scala2.8のPackage Objects

2.8でのパッケージオブジェクトについて書かれた文書を見つけました。
Package Objects (Martin Odersky, Lex Spoon September 15, 2010)

要約部分にこう書かれています。

Until 2.8, the only things you could put in a package were classes, traits, and standalone objects. These are by far the most common definitions that are placed at the top level of a package, but version 2.8 of the Scala programming language doesn't limit you to just those. Any kind of definition that you can put inside a class, you can also put at the top level of a package. If you have some helper method you'd like to be in scope for an entire package, go ahead and put it right at the top level of the package.

しょぼい訳をしてみると

2.8以前は、クラス、トレイト、独立したオブジェクトを置くことが出来るだけでした。これらはパッケージのトップレベルに位置する、非常に共通な定義です。しかしscala2.8ではそれらに限定しません。クラスの中に置くことの出来るどんな種類の定義でも、パッケージのトップレベルに置くことができます。もしパッケージ全体をスコープにしたい、いくつかのヘルパーメソッドがあるのなら、パッケージのトップレベルに置くことができます。

こんな感じですか。
パッケージオブジェクトの定義の仕方なども上記リンクからたどっていくことができます。