Skip to content

Commit a6fe1dd

Browse files
authored
Merge pull request #6149 from wilzbach/remove-undefined-ddoc
Remove use of undefined ddoc macros from Phobos merged-on-behalf-of: Sebastian Wilzbach <[email protected]>
2 parents b3ebd07 + a24b450 commit a6fe1dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

std/math.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ enum real LOG2 = 0x1.34413509f79fef311f12b35816f92p-2L; /** $(SUB log, 10)
497497
enum real LOG10E = 0x1.bcb7b1526e50e32a6ab7555f5a67cp-2L; /** $(SUB log, 10)e = 0.434294... */
498498
enum real LN2 = 0x1.62e42fefa39ef35793c7673007e5fp-1L; /** ln 2 = 0.693147... */
499499
enum real LN10 = 0x1.26bb1bbb5551582dd4adac5705a61p+1L; /** ln 10 = 2.302585... */
500-
enum real PI = 0x1.921fb54442d18469898cc51701b84p+1L; /** $(_PI) = 3.141592... */
500+
enum real PI = 0x1.921fb54442d18469898cc51701b84p+1L; /** &pi; = 3.141592... */
501501
enum real PI_2 = PI/2; /** $(PI) / 2 = 1.570796... */
502502
enum real PI_4 = PI/4; /** $(PI) / 4 = 0.785398... */
503503
enum real M_1_PI = 0x1.45f306dc9c882a53f84eafa3ea69cp-2L; /** 1 / $(PI) = 0.318309... */

std/net/curl.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2314,7 +2314,7 @@ private bool decodeLineInto(Terminator, Char = char)(ref const(ubyte)[] basesrc,
23142314
* http.perform();
23152315
* ---
23162316
*
2317-
* See_Also: $(_HTTP www.ietf.org/rfc/rfc2616.txt, RFC2616)
2317+
* See_Also: $(LINK2 http://www.ietf.org/rfc/rfc2616.txt, RFC2616)
23182318
*
23192319
*/
23202320
struct HTTP

0 commit comments

Comments
 (0)