Skip to content

Commit bc35d6c

Browse files
committed
---
yaml --- r: 225020 b: refs/heads/stable c: fb526cf h: refs/heads/master v: v3
1 parent 8920628 commit bc35d6c

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ refs/heads/tmp: e5d90d98402475b6e154ce216f9efcb80da1a747
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: 1fe32ca12c51afcd761d9962f51a74ff0d07a591
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: bd85983d059151c9ef07dbd11a35f1d16463eb94
32+
refs/heads/stable: fb526cf3a1535b8dac0d572b7eed8d4645008407
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b

branches/stable/src/libcore/fmt/builders.rs

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ impl<'a, 'b: 'a> DebugStruct<'a, 'b> {
9393
self
9494
}
9595

96-
/// Consumes the `DebugStruct`, finishing output and returning any error
97-
/// encountered.
96+
/// Finishes output and returns any error encountered.
9897
#[unstable(feature = "debug_builders", reason = "method was just created")]
9998
pub fn finish(&mut self) -> fmt::Result {
10099
if self.has_fields {
@@ -156,8 +155,7 @@ impl<'a, 'b: 'a> DebugTuple<'a, 'b> {
156155
self
157156
}
158157

159-
/// Consumes the `DebugTuple`, finishing output and returning any error
160-
/// encountered.
158+
/// Finishes output and returns any error encountered.
161159
#[unstable(feature = "debug_builders", reason = "method was just created")]
162160
pub fn finish(&mut self) -> fmt::Result {
163161
if self.has_fields {
@@ -246,8 +244,7 @@ impl<'a, 'b: 'a> DebugSet<'a, 'b> {
246244
self
247245
}
248246

249-
/// Consumes the `DebugSet`, finishing output and returning any error
250-
/// encountered.
247+
/// Finishes output and returns any error encountered.
251248
#[unstable(feature = "debug_builders", reason = "method was just created")]
252249
pub fn finish(&mut self) -> fmt::Result {
253250
self.inner.finish();
@@ -292,8 +289,7 @@ impl<'a, 'b: 'a> DebugList<'a, 'b> {
292289
self
293290
}
294291

295-
/// Consumes the `DebugSet`, finishing output and returning any error
296-
/// encountered.
292+
/// Finishes output and returns any error encountered.
297293
#[unstable(feature = "debug_builders", reason = "method was just created")]
298294
pub fn finish(&mut self) -> fmt::Result {
299295
self.inner.finish();
@@ -349,8 +345,7 @@ impl<'a, 'b: 'a> DebugMap<'a, 'b> {
349345
self
350346
}
351347

352-
/// Consumes the `DebugMap`, finishing output and returning any error
353-
/// encountered.
348+
/// Finishes output and returns any error encountered.
354349
#[unstable(feature = "debug_builders", reason = "method was just created")]
355350
pub fn finish(&mut self) -> fmt::Result {
356351
let prefix = if self.is_pretty() && self.has_fields { "\n" } else { "" };

0 commit comments

Comments
 (0)