diff --git a/docs/fundamentals/runtime-libraries/system-globalization-datetimeformatinfo.md b/docs/fundamentals/runtime-libraries/system-globalization-datetimeformatinfo.md index 67c8066c365c7..5eeb0f35e11a2 100644 --- a/docs/fundamentals/runtime-libraries/system-globalization-datetimeformatinfo.md +++ b/docs/fundamentals/runtime-libraries/system-globalization-datetimeformatinfo.md @@ -166,7 +166,7 @@ The [standard date and time format strings](../../standard/base-types/standard-d |"Y", "y" (year month; standard format string)|, to define the overall format of the result string.| |"ddd" (custom format specifier)|, to include the abbreviated name of the day of the week in the result string.| |"g", "gg" (custom format specifier)|Calls the method to insert the era name in the result string.| -|"MMM" (custom format specifier)|, to include the abbreviated month name in the result string.| +|"MMM" (custom format specifier)| or , to include the abbreviated month name in the result string.| |"MMMM" (custom format specifier)| or , to include the full month name in the result string.| |"t" (custom format specifier)| or , to include the first character of the AM/PM designator in the result string.| |"tt" (custom format specifier)| or , to include the full AM/PM designator in the result string.| diff --git a/docs/standard/base-types/custom-date-and-time-format-strings.md b/docs/standard/base-types/custom-date-and-time-format-strings.md index 2b65f52099feb..16eea80a955f2 100644 --- a/docs/standard/base-types/custom-date-and-time-format-strings.md +++ b/docs/standard/base-types/custom-date-and-time-format-strings.md @@ -427,7 +427,7 @@ The following example includes the "MM" custom format specifier in a custom form ### The "MMM" custom format specifier -The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the property of the current or specified culture. +The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the property of the current or specified culture. If there is a "d" or "dd" custom format specifier in the custom format string, it is retrieved from the property instead. The following example includes the "MMM" custom format specifier in a custom format string. @@ -438,7 +438,7 @@ The following example includes the "MMM" custom format specifier in a custom for ### The "MMMM" custom format specifier -The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the property of the current or specified culture. +The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the property of the current or specified culture. If there is a "d" or "dd" custom format specifier in the custom format string, it is retrieved from the property instead. The following example includes the "MMMM" custom format specifier in a custom format string.