Skip to content

Commit 006ba61

Browse files
authored
Fix formatting issues in README.md
Signed-off-by: Jean-Marc Prieur <[email protected]>
1 parent 02dd75b commit 006ba61

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ the following diagram provides an overview of the data classes exposed by Micros
3030

3131
```mermaid
3232
classDiagram
33+
direction TB
3334
namespace ApplicationOptions {
3435
class CredentialDescription {
3536
&lt;&lt;ro&gt;&gt; +string Id
@@ -184,7 +185,7 @@ namespace TokenAcquisition {
184185
}
185186
186187
class IAuthorizationHeaderProvider { <<interface>> }
187-
class IAuthorizationHeaderProvider~TResult~ { <<interface>> }
188+
class IAuthorizationHeaderProvider&lt;TResult&gt; { <<interface>> }
188189
class IDownstreamApi { <<interface>>
189190
+CallApiAsync(...)
190191
+CallApiForUserAsync(...)
@@ -519,7 +520,7 @@ It's also possible (and recommended) to use higher level APIs:
519520
AcquireTokenOptions --> "ManagedIdentity" ManagedIdentityOptions : Has
520521
IDownstreamApi ..> DownstreamApiOptions : Uses
521522
IAuthorizationHeaderProvider ..> AuthorizationHeaderProviderOptions : Uses
522-
IAuthorizationHeaderProvider~TResult~ { <<interface>> }
523+
IAuthorizationHeaderProvider&lt;TResult&gt; { <<interface>> }
523524
524525
```
525526

0 commit comments

Comments
 (0)