Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit ac56312

Browse files
authored
Merge pull request #1633 from aG0aep6G/object-multiline-ddoc
[Ddoc] replace multiline /// comments with /** */ ones
2 parents 7758492 + 8fc5e79 commit ac56312

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/object.d

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -282,12 +282,13 @@ class TypeInfo
282282
}
283283
}
284284

285-
/// Get TypeInfo for 'next' type, as defined by what kind of type this is,
286-
/// null if none.
285+
/** Get TypeInfo for 'next' type, as defined by what kind of type this is,
286+
null if none. */
287287
@property inout(TypeInfo) next() nothrow pure inout @nogc { return null; }
288288

289-
/// Return default initializer. If the type should be initialized to all zeros,
290-
/// an array with a null ptr and a length equal to the type size will be returned.
289+
/** Return default initializer. If the type should be initialized to all
290+
zeros, an array with a null ptr and a length equal to the type size will be
291+
returned. */
291292
abstract const(void)[] initializer() nothrow pure const @safe @nogc;
292293

293294
/// $(RED Scheduled for deprecation.) Please use `initializer` instead.
@@ -297,8 +298,8 @@ class TypeInfo
297298
/* Planned for 2.074: Remove init, making way for the init type property,
298299
fixing issue 12233. */
299300

300-
/// Get flags for type: 1 means GC should scan for pointers,
301-
/// 2 means arg of this type is passed in XMM register
301+
/** Get flags for type: 1 means GC should scan for pointers,
302+
2 means arg of this type is passed in XMM register */
302303
@property uint flags() nothrow pure const @safe @nogc { return 0; }
303304

304305
/// Get type information on the contents of the type; null if not available
@@ -1798,8 +1799,8 @@ class Error : Throwable
17981799
bypassedException = null;
17991800
}
18001801

1801-
/// The first $(D Exception) which was bypassed when this Error was thrown,
1802-
/// or $(D null) if no $(D Exception)s were pending.
1802+
/** The first $(D Exception) which was bypassed when this Error was thrown,
1803+
or $(D null) if no $(D Exception)s were pending. */
18031804
Throwable bypassedException;
18041805
}
18051806

0 commit comments

Comments
 (0)