@@ -129,8 +129,7 @@ Debug Printing
129
129
130
130
Via compiler magic, *everything * conforms to the ``CustomDebugStringConvertible ``
131
131
protocol. To change the debug representation for a type, you don't
132
- need to declare conformance: simply give the type a ``debugFormat() ``
133
- ::
132
+ need to declare conformance: simply give the type a ``debugFormat() ``::
134
133
135
134
/// \brief A thing that can be printed in the REPL and the Debugger
136
135
protocol CustomDebugStringConvertible {
@@ -199,7 +198,7 @@ Because it's not always efficient to construct a ``String``
199
198
representation before writing an object to a stream, we provide a
200
199
``Streamable `` protocol, for types that can write themselves into an
201
200
``OutputStream ``. Every ``Streamable `` is also a ``CustomStringConvertible ``,
202
- naturally ::
201
+ naturally::
203
202
204
203
protocol Streamable : CustomStringConvertible {
205
204
func writeTo<T: OutputStream>(target: [inout] T)
@@ -426,7 +425,7 @@ would also make ``OutputStream`` adapters a *bit* simpler to use
426
425
because you'd never need to “write back” explicitly onto the target
427
426
stream. However, stateful ``OutputStream `` adapters would still need a
428
427
``close() `` method, which makes a perfect place to return a copy of
429
- the underlying stream, which can then be “written back.” :
428
+ the underlying stream, which can then be “written back” :
430
429
431
430
.. parsed-literal ::
432
431
0 commit comments