Skip to content

Commit 4ed2b31

Browse files
authored
Merge pull request #1219 from msebolt/windows-formatting-review-pr35
windows formatting review pr35
2 parents 6d1091e + 06332ca commit 4ed2b31

40 files changed

Lines changed: 37 additions & 41 deletions

File tree

docs/windows/module-getactivationfactory-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gets an activation factory for the module.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
WRL_NOTHROW HRESULT GetActivationFactory(
2222
_In_ HSTRING pActivatibleClassId,
2323
_Deref_out_ IActivationFactory **ppIFactory,

docs/windows/module-getclassobject-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Retreives a cache of class factories.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
HRESULT GetClassObject(
2222
REFCLSID clsid,
2323
REFIID riid,

docs/windows/module-getmodule-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Creates an instance of a module.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
static Module& GetModule();
2222
WRL_NOTHROW static Module& GetModule();
2323
```

docs/windows/module-getobjectcount-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Retrieves the number of objects managed by this module.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
virtual long GetObjectCount() const;
2222
```
2323

docs/windows/module-incrementobjectcount-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Increments the number of objects tracked by the module.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
virtual long IncrementObjectCount();
2222
```
2323

docs/windows/module-methodreleasenotifier-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Invokes an event handler when the last object in the current module is released.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
template<typename T>
2222
class MethodReleaseNotifier : public ReleaseNotifier;
2323
```

docs/windows/module-methodreleasenotifier-invoke-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Calls the event handler associated with the current **Module::MethodReleaseNotif
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
void Invoke();
2222
```
2323

docs/windows/module-methodreleasenotifier-method-data-member.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Holds a pointer to the event handler for the current **Module::MethodReleaseNoti
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
void (T::* method_)();
2222
```
2323

docs/windows/module-methodreleasenotifier-methodreleasenotifier-constructor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Initializes a new instance of the **Module::MethodReleaseNotifier** class.
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
MethodReleaseNotifier(
2222
_In_ T* object,
2323
_In_ void (T::* method)(),

docs/windows/module-methodreleasenotifier-object-data-member.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Holds a pointer to the object whose member function is the event handler for the
1717

1818
## Syntax
1919

20-
```
20+
```cpp
2121
T* object_;
2222
```
2323

0 commit comments

Comments
 (0)