Skip to content

Commit df5b076

Browse files
authored
Add blockquotes for error messages in range [C3131, C3160]
1 parent cc6f72e commit df5b076

23 files changed

+23
-23
lines changed

docs/error-messages/compiler-errors-2/compiler-error-c3131.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 38f20fac-83c9-4cd9-b7b5-74ca8f650ea6
88
---
99
# Compiler Error C3131
1010

11-
project must have a 'module' attribute with a 'name' property
11+
> project must have a 'module' attribute with a 'name' property
1212
1313
The [module](../../windows/attributes/module-cpp.md) attribute must have a name parameter.
1414

docs/error-messages/compiler-errors-2/compiler-error-c3132.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d54a3d12-336a-4ed0-ad4e-43cddac33b5e
88
---
99
# Compiler Error C3132
1010

11-
'function-parameter' : parameter arrays can only be applied to a formal argument of type 'single-dimensional managed array'
11+
> 'function-parameter' : parameter arrays can only be applied to a formal argument of type 'single-dimensional managed array'
1212
1313
The <xref:System.ParamArrayAttribute> attribute was applied to a parameter that was not a single-dimension array.
1414

docs/error-messages/compiler-errors-2/compiler-error-c3133.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 4a709405-b67b-4061-8a2a-19fa5fb34a2a
88
---
99
# Compiler Error C3133
1010

11-
Attributes cannot be applied to C++ varargs
11+
> Attributes cannot be applied to C++ varargs
1212
1313
An attribute was applied incorrectly. Attributes can not be applied to an ellipsis representing variable arguments.
1414

docs/error-messages/compiler-errors-2/compiler-error-c3134.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f887e4d2-7740-49e4-9972-7edceb8fa77b
88
---
99
# Compiler Error C3134
1010

11-
'value' : value of attribute argument 'attribute' does not have valid type 'type'
11+
> 'value' : value of attribute argument 'attribute' does not have valid type 'type'
1212
1313
A syntax error was detected when a value was assigned to an attribute.
1414

docs/error-messages/compiler-errors-2/compiler-error-c3135.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: e92ee007-5a26-47f4-8ef4-339f2d9528d1
88
---
99
# Compiler Error C3135
1010

11-
'property' : a property cannot have a 'const' or 'volatile' type
11+
> 'property' : a property cannot have a 'const' or 'volatile' type
1212
1313
The [const](../../cpp/const-cpp.md) and [volatile](../../cpp/volatile-cpp.md) keywords are not permitted on properties.

docs/error-messages/compiler-errors-2/compiler-error-c3136.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c77103cd-00f7-408e-b74b-4f8562039d31
88
---
99
# Compiler Error C3136
1010

11-
'interface' : a COM interface can only inherit from another COM interface, 'interface' is not a COM interface
11+
> 'interface' : a COM interface can only inherit from another COM interface, 'interface' is not a COM interface
1212
1313
An interface to which you applied an [interface attribute](../../windows/attributes/interface-attributes.md) inherits from an interface that is not a COM interface. A COM interface ultimately inherits from `IUnknown`. Any interface preceded by an interface attribute is a COM interface.
1414

docs/error-messages/compiler-errors-2/compiler-error-c3137.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 70bb1313-2e87-43ed-a0d8-33fa6ff475e4
88
---
99
# Compiler Error C3137
1010

11-
'property' : a property cannot be initialized
11+
> 'property' : a property cannot be initialized
1212
1313
A property cannot be initialized, for example, in a constructor's initialization list.
1414

docs/error-messages/compiler-errors-2/compiler-error-c3138.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 364ee9e8-9358-410e-bd35-9c4a226a3753
88
---
99
# Compiler Error C3138
1010

11-
'interface' : a 'attribute' interface must inherit from IDispatch, or from an interface that inherits from IDispatch
11+
> 'interface' : a 'attribute' interface must inherit from IDispatch, or from an interface that inherits from IDispatch
1212
1313
An interface with the [dual](../../windows/attributes/dual.md) or [dispinterface](../../windows/attributes/dispinterface.md) attributes does not have `IDispatch` as a direct or indirect base interface.
1414

docs/error-messages/compiler-errors-2/compiler-error-c3139.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 95c92263-10ac-4ff3-b385-6312dd92adbc
88
---
99
# Compiler Error C3139
1010

11-
'struct' : cannot export a UDT without members
11+
> 'struct' : cannot export a UDT without members
1212
1313
You attempted to apply the [export](../../windows/attributes/export.md) attribute to an empty UDT (user-defined type). For example:
1414

docs/error-messages/compiler-errors-2/compiler-error-c3140.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 122f8943-fac3-4db8-a3a8-2c5d19233de6
88
---
99
# Compiler Error C3140
1010

11-
cannot have multiple 'module' attributes in the same compilation unit
11+
> cannot have multiple 'module' attributes in the same compilation unit
1212
1313
The [module](../../windows/attributes/module-cpp.md) attribute can only be defined once per project.
1414

0 commit comments

Comments
 (0)