Skip to content

Commit 0cb35f2

Browse files
committed
Fix image links in readmes for display in nuget.org
1 parent fade552 commit 0cb35f2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -217,23 +217,23 @@ that aren't satisfied due to the requirements on the `Echo` type itself. For
217217
a seasoned *Merq* developer, this is a no-brainer, but for new developers,
218218
it can be a bit puzzling:
219219

220-
![compiler warnings screenshot](https://github.com/devlooped/Merq/blob/main/assets/img/command-interfaces.png?raw=true)
220+
![compiler warnings screenshot](https://raw.githubusercontent.com/devlooped/Merq/main/assets/img/command-interfaces.png)
221221
222222
A code fix is provided to automatically implement the required interfaces
223223
in this case:
224224

225-
![code fix to implement ICommand screenshot](https://github.com/devlooped/Merq/blob/main/assets/img/implement-icommand.png?raw=true)
225+
![code fix to implement ICommand screenshot](https://raw.githubusercontent.com/devlooped/Merq/main/assets/img/implement-icommand.png)
226226
227227
Likewise, if a consumer attempted to invoke the above `Echo` command asynchronously
228228
(known as the [async over sync anti-pattern](https://devblogs.microsoft.com/pfxteam/should-i-expose-asynchronous-wrappers-for-synchronous-methods/)),
229229
they would get a somewhat unintuitive compiler error:
230230

231-
![error executing sync command as async](https://github.com/devlooped/Merq/blob/main/assets/img/async-sync-command.png?raw=true)
231+
![error executing sync command as async](https://raw.githubusercontent.com/devlooped/Merq/main/assets/img/async-sync-command.png)
232232
233233
But the second error is more helpful, since it points to the actual problem,
234234
and a code fix can be applied to resolve it:
235235

236-
![code fix for executing sync command as async](https://github.com/devlooped/Merq/blob/main/assets/img/async-sync-command-fix.png?raw=true)
236+
![code fix for executing sync command as async](https://raw.githubusercontent.com/devlooped/Merq/main/assets/img/async-sync-command-fix.png)
237237
238238
The same analyzers and code fixes are provided for the opposite anti-pattern,
239239
known as [sync over async](https://devblogs.microsoft.com/pfxteam/should-i-expose-synchronous-wrappers-for-asynchronous-methods/),
@@ -341,7 +341,7 @@ dotnet counters monitor --process-id [PROCESS_ID] --counters Merq
341341

342342
Example rendering from the included sample console app:
343343

344-
![dotnet-counters screenshot](https://github.com/devlooped/Merq/blob/main/assets/img/dotnet-counters.png?raw=true)
344+
![dotnet-counters screenshot](https://raw.githubusercontent.com/devlooped/Merq/main/assets/img/dotnet-counters.png)
345345
346346
## Duck Typing Support
347347

0 commit comments

Comments
 (0)