Skip to content

Commit c37a223

Browse files
fix: typo
1 parent 5676d74 commit c37a223

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ There are more record types but for now, let's look at some of the most commonly
320320
- **NS (Name Server records)**: Stores the name server for a DNS entry.
321321
- **SOA (Start of Authority)**: Stores admin information about a domain.
322322
- **SRV (Service Location record)**: Specifies a port for specific services.
323-
- **PTR (Reverse-lookup Pointer records)**: Provides a domain name in reverse lookups.
323+
- **PTR (Reverse-lookup Pointer record)**: Provides a domain name in reverse lookups.
324324
- **CERT (Certificate record)**: Stores public key certificates.
325325

326326
## Subdomains
@@ -1595,7 +1595,7 @@ _The PACELC theorem was first described by [Daniel J. Abadi](https://scholar.goo
15951595

15961596
PACELC theorem was developed to address a key limitation of the CAP theorem as it makes no provision for performance or latency.
15971597

1598-
For example, according to the CAP theorem, a database can be considered Available if a query returns a response after 30 days. Obviously, such latency would be unacceptable for any real-world application.
1598+
For example, according to the CAP theorem, a database can be considered available if a query returns a response after 30 days. Obviously, such latency would be unacceptable for any real-world application.
15991599

16001600
# Transactions
16011601

@@ -2060,7 +2060,7 @@ Message brokers can validate, store, route, and deliver messages to the appropri
20602060
Message brokers offer two basic message distribution patterns or messaging styles:
20612061

20622062
- **[Point-to-Point messaging](https://karanpratapsingh.com/courses/system-design/message-queues)**: This is the distribution pattern utilized in message queues with a one-to-one relationship between the message's sender and receiver.
2063-
- **[Publish-subscribe messaging](https://karanpratapsingh.com/courses/system-design/publish-subscribe)**: In this message distribution pattern, often referred to as _"pub/sub"_, the producer of each message publishes it to a topic, and multiple message consumers subscribe to topics from which they want to receive messages.
2063+
- **[Publish-Subscribe messaging](https://karanpratapsingh.com/courses/system-design/publish-subscribe)**: In this message distribution pattern, often referred to as _"pub/sub"_, the producer of each message publishes it to a topic, and multiple message consumers subscribe to topics from which they want to receive messages.
20642064

20652065
_We will discuss these messaging patterns in detail in the later tutorials._
20662066

@@ -3383,7 +3383,7 @@ Here are the most common disadvantages of OAuth 2.0:
33833383

33843384
OAuth 2.0 is designed only for _authorization_, for granting access to data and features from one application to another. OpenID Connect (OIDC) is a thin layer that sits on top of OAuth 2.0 that adds login and profile information about the person who is logged in.
33853385

3386-
When an Authorization Server supports OIDC, it is sometimes called an identity provider (IdP), since it provides information about the Resource Owner back to the Client. OpenID Connect is relatively new, resulting in lower adoption and industry implementation of best practices compared to OAuth.
3386+
When an Authorization Server supports OIDC, it is sometimes called an Identity Provider (IdP), since it provides information about the Resource Owner back to the Client. OpenID Connect is relatively new, resulting in lower adoption and industry implementation of best practices compared to OAuth.
33873387

33883388
### Concepts
33893389

0 commit comments

Comments
 (0)