File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,12 @@ object Predef extends LowPriorityImplicits with DeprecatedPredef {
82
82
*/
83
83
def classOf [T ]: Class [T ] = null // This is a stub method. The actual implementation is filled in by the compiler.
84
84
85
+ /**
86
+ * The `String` type in Scala has methods that come either from the underlying
87
+ * Java String (see the documentation corresponding to your Java version, for
88
+ * example [[http://docs.oracle.com/javase/7/docs/api/java/lang/String.html ]]) or
89
+ * are added implicitly through [[scala.collection.immutable.StringOps ]].
90
+ */
85
91
type String = java.lang.String
86
92
type Class [T ] = java.lang.Class [T ]
87
93
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ package immutable
13
13
import mutable .StringBuilder
14
14
15
15
/**
16
- * This class serves as a wrapper providing ` String` s with all the operations
17
- * found in indexed sequences. Where needed, instances of `String` object
16
+ * This class serves as a wrapper providing [[ scala.Predef. String]] s with all the operations
17
+ * found in indexed sequences. Where needed, instances of `String` objects
18
18
* are implicitly converted into this class.
19
19
*
20
20
* The difference between this class and `WrappedString` is that calling transformer
You can’t perform that action at this time.
0 commit comments