chore: fix grammar

main
sudo pacman -Syu 2023-06-11 00:03:19 +07:00
parent 19760607d5
commit c2612f89f4
2 changed files with 3 additions and 3 deletions

View File

@ -68,8 +68,8 @@
</ul>
<p>
Normally, if API A fails, API B should not be called. But what if API A is
<strong>optional</strong>, where either it successes or fails, API B
should be called anyway.
<strong>optional</strong>, whether it successes or fails, API B should be
called anyway.
</p>
<p>My buggy code is like this:</p>
<div class="highlight highlight-source-go">

View File

@ -12,7 +12,7 @@ Imagine a chain of APIs:
- Calling API B
Normally, if API A fails, API B should not be called.
But what if API A is **optional**, where either it successes or fails, API B should be called anyway.
But what if API A is **optional**, whether it successes or fails, API B should be called anyway.
My buggy code is like this: