From 7996459389078706c2708f770b2a9875793f6489 Mon Sep 17 00:00:00 2001 From: Jesse Phillips Date: Fri, 12 Jun 2015 20:23:23 -0700 Subject: [PATCH] Add reference to C for octal numbers --- std/conv.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/std/conv.d b/std/conv.d index 7e6be6296a4..0859edf70af 100644 --- a/std/conv.d +++ b/std/conv.d @@ -3665,7 +3665,8 @@ unittest /*************************************************************** The $(D octal) facility provides a means to declare a number in base 8. -Using $(D octal!177) or $(D octal!"177") for 127 represented in octal. +Using $(D octal!177) or $(D octal!"177") for 127 represented in octal +(same as 0177 in C). The rules for strings are the usual for literals: If it can fit in an $(D int), it is an $(D int). Otherwise, it is a $(D long). But, if the