summaryrefslogtreecommitdiff
path: root/src/library/scala/text
Commit message (Collapse)AuthorAgeFilesLines
* Lower-case spelling of @deprecated messagesSimon Ochsenreither2016-05-281-8/+8
|
* SI-6811 Deprecate scala.textSimon Ochsenreither2013-07-141-0/+8
|
* Banish needless semicolons.Jason Zaugg2013-02-241-1/+1
|
* Brings all copyrights (in comments) up-to-date, from 2011/12 to 2013Heather Miller2012-11-021-1/+1
|
* Handled some of our new exhaustiveness warnings.Paul Phillips2012-05-261-0/+2
| | | | Who could have suspected it would actually be right most of the time?
* Address doc comment rot in the standard library.Jason Zaugg2012-05-131-3/+0
| | | | | | | | | | | | | | | | | | | | | - Match @param/@tparam names to the actual parameter name - Use @tparam for type parameters - Whitespace is required between `*` and `@` - Fix incorrect references to @define macros. - Use of monospace `` and {{{}}} (much more needed) - Remove `@param p1 ...` stubs, which appear in the generated docss. - But, retainsed `@param p1` stubs, assuming they will be filtered from the generated docs by SI-5795. - Avoid use of the shorthand `@param doc for the solitary param` (which works, but isn't recognized by the code inspection in IntelliJ I used to sweep through the problems) The remaining warnings from `ant docs` seem spurious, I suspect they are an unintended consequence of documenting extension methods. [scaladoc] /Users/jason/code/scala/src/library/scala/collection/TraversableOnce.scala:181: warning: Variable coll undefined in comment for method reduceOption in class Tuple2Zipped [scaladoc] def reduceOption[A1 >: A](op: (A1, A1) => A1): Option[A1] = reduceLeftOption(op) [scaladoc] ^
* 3rd round of clean ups (see r25285, r25292)michelou2011-07-151-5/+2
|
* Updated copyright notices to 2011Antonio Cunei2011-01-201-1/+1
|
* Removed more than 3400 svn '$Id' keywords and r...Antonio Cunei2010-05-121-1/+0
| | | | | Removed more than 3400 svn '$Id' keywords and related junk.
* Updated copyright notices to 2010Antonio Cunei2009-12-071-1/+1
|
* Updated (all) copyright notices to 2009Antonio Cunei2009-01-131-1/+1
|
* New reorg planGeoffrey Washburn2008-04-071-0/+122
|
* The great library reorg!Geoffrey Washburn2008-04-041-122/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | The standard library will now be laid out approximately like this library/scala /jvm/scala /jvm/jvm1.4/scala /jvm/jvm1.5/scala /jvm/android/scala /jvm/cldc/scala /dotnet/scala To build the standard library for a given target you start by copying the root library/scala tree to a staging area, then move down in the hierarchy copying the nested "scala" trees on top in the staging area. So if you wanted to build for cldc, for example, you would do something like the following: rsync -avz library/scala staging/ rsync -avz library/scala/jvm/scala staging/ rsync -avz library/scala/jvm/cldc/scala staging/ The ant build files will be updated to do this for you automagically, and there will soon be shell script to do this if you want to compile some parts of the standard library manually.
* removed primitive type aliases from the standar...michelou2007-06-081-3/+2
| | | | | removed primitive type aliases from the standard library
* minor changesmichelou2007-05-211-11/+11
|
* Removed Pair(...), Triple(...).Martin Odersky2007-02-211-23/+23
|
* changed tuple syntax to (...)Martin Odersky2007-02-131-22/+22
|
* changed pair(...) to {...}Martin Odersky2007-02-051-22/+22
|
* removed leading/trailing tabs/blanks in scala/u...michelou2006-09-201-29/+32
| | | | | removed leading/trailing tabs/blanks in scala/util/*.scala
* Removed unnecessary import clause from scala.te...mihaylov2006-07-141-1/+0
| | | | | Removed unnecessary import clause from scala.text.Document
* Rearranged header and updated copyright messagemihaylov2006-03-021-1/+3
|
* Switching to the new build system and to the ne...Gilles Dubochet2005-12-191-0/+119
Switching to the new build system and to the new build system. This is a MAJOR commit, so be careful when updating.