Skip to content

Commit a44d1ae

Browse files
committed
---
yaml --- r: 207222 b: refs/heads/tmp c: fb526cf h: refs/heads/master v: v3
1 parent efe54b5 commit a44d1ae

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
@@ -32,7 +32,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3232
refs/heads/beta: cd7d89af9169885642d43597302af69f842bbd78
3333
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3434
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
35-
refs/heads/tmp: bd85983d059151c9ef07dbd11a35f1d16463eb94
35+
refs/heads/tmp: fb526cf3a1535b8dac0d572b7eed8d4645008407
3636
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3737
refs/tags/homu-tmp: 704c2ee730d2e948d11a2edd77e3f35de8329a6e
3838
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412

branches/tmp/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)