Its and Their for Technical Ownership

LESSON

Technical English: Pronouns and Determiners for Clear References

005 20 min beginner

Its and Their for Technical Ownership

By the end of this lesson, you will be able to...

  • Link a singular component to one of its policies, states, or resources with its.

  • Link a plural group to their shared resources with their.

  • Separate possessive its from it's and repair an ownership chain when the owner is unclear.

Idea in one sentence: Its and their keep the owner visible while introducing the thing associated with that owner.

Core Insight

An incident channel contains this sentence:

The service changed its retry policy.

The service is the owner or source of the policy. The policy is the thing associated with it. Its connects the two without repeating the service:

The service changed the service's retry policy.
The service changed its retry policy.

Now consider a group:

The workers renewed their leases.

Several workers share or hold leases. Their connects the plural owner the workers to the resource leases.

The useful question is not “Who possesses this in a human sense?” Technical systems use ownership to describe many relationships: a service has a policy, a worker has a lease, a queue has a depth, a request has a timeout, and a component has a health signal. The possessive form tells the reader which noun provides the reference point.

This lesson adds ownership to the reference-chain model from the previous lessons. It and they continue an actor. It and them continue an object. Its and their introduce an associated noun while keeping the owner explicit.

The Small Situation: A Worker Rollout

Suppose a team is changing how a job system renews leases. The system contains one scheduler, one queue, and several workers.

The explicit version is:

The scheduler changed the scheduler's lease policy.
The workers renewed the workers' leases before the deadline.
The queue reported the queue's depth to the dashboard.

Every owner is visible, but the repeated noun makes the update clumsy. The natural technical version is:

The scheduler changed its lease policy.
The workers renewed their leases before the deadline.
The queue reported its depth to the dashboard.

Read each pair as a small arrow:

the scheduler -> its lease policy
the workers -> their leases
the queue -> its depth

The owner comes first. The possessive word points forward to the associated noun. It does not replace the owner with a vague “system thing.”

The choice also changes how quickly a reader can audit a sentence. In The queue reported its depth, the reader sees one component and one associated measurement. In The queue reported the worker's depth, the reader sees a handoff between two components. Both forms can be useful, but they describe different ownership paths. When a review asks who should receive an alert or who may change a setting, the ownership path is part of the technical meaning, not only a grammar detail.

The Naive Idea: Possessive Words Are Just Short Pronouns

A tempting rule is:

If a noun was mentioned, use its or their for any later noun.

That rule fails because the possessive form depends on the owner, not on the thing being described.

Compare:

The service changed its policy.
The services changed their policies.

The owner changes from one service to several services, so the possessive form changes. The number of policies does not decide between its and their; the number of owners does.

Now compare a different relationship:

The service changed the workers' policy.
The service changed its policy.

The first sentence says that the workers own or use the policy. The second says that the service owns or supplies it. Both are grammatical, but they make different technical claims. A possessive form is not decorative compression. It selects an owner.

A Better Model: Owner, Associated Noun, and Number

Use three checks before choosing its or their.

1. Name the owner

Ask: which component, group, or object does this noun belong to, describe, or come from?

The gateway changed its certificate.

The gateway is the owner in this sentence. The certificate is associated with the gateway.

2. Check the owner's number

Use its when one singular non-human owner is named:

The cache lost its warm entries.
The migration reached its final step.

Use their when a plural owner is named:

The workers renewed their leases.
The services reported their latencies.

The associated noun may be singular or plural in either case:

The service changed its policy.
The service changed its policies.
The workers changed their policy.
The workers changed their policies.

The owner controls the choice between its and their.

3. Check that the relationship is the intended one

Ownership can mean possession, configuration, responsibility, membership, or origin. If two components could own the same resource, repeat the owner or name the relationship more directly.

Plain meaning:

Its means “belonging to that one named thing.” Their means “belonging to those named things.”

In this scenario:

The workers renewed their leases says that the leases are associated with the workers, while The scheduler renewed its leases assigns the relationship to the scheduler.

Technical name:

These are possessive determiners. They appear before the associated noun and make the owner-to-resource link part of the noun phrase.

Its and It's: One Apostrophe Changes the Job

The most common spelling boundary is:

its = belonging to it
it's = it is or it has

Use possessive its before an associated noun:

The service changed its retry policy.
The queue reached its limit.

Use it's when the sentence can expand to it is or it has:

It's ready for the deploy.        -> It is ready for the deploy.
It's been stable for an hour.     -> It has been stable for an hour.

The apostrophe does not mark possession here. It marks a contraction. A quick test is to expand the word:

The queue reached it is limit.   ✗
The queue reached belonging-to-it limit.  ✓ its

The expansion sounds awkward because its is a determiner, but it reveals the role. If it is or it has fits naturally, use it's; if a noun follows and the phrase means “belonging to it,” use its.

Worked Classification: Who Owns the Signal?

Start with this small status update:

The gateway restarted during the deploy. It lost its route table. The workers renewed their leases, but the queue exceeded its limit.

Trace each link:

Phrase Owner Associated noun Why the form fits
its route table the gateway route table one singular component owns the table
their leases the workers leases a plural group owns or holds the leases
its limit the queue limit one singular component has one configured boundary

The first It is a subject pronoun that continues the gateway. The later its does a different job: it introduces a noun associated with that gateway. Do not confuse the two links.

Now change the intended owner:

The gateway restarted during the deploy. It lost the workers' route table.

This says the route table belongs to the workers, not the gateway. That may be correct in a particular design, but it is a different operational claim. The possessive form moves the reader's attention to a different owner.

The naive failure is to write:

The gateway restarted during the deploy. It lost it's route table.

It's expands to it is or it has, so the phrase becomes “It lost it is route table.” The sentence has both a spelling error and a broken ownership link.

Where Ownership Chains Break

The owner changes between clauses

The scheduler called the worker and updated its lease.

Does its refer to the scheduler or the worker? Both are singular and both could have a lease. Repeat the owner:

The scheduler called the worker and updated the worker's lease.

Or reorder the sentence:

After calling the worker, the scheduler updated its own lease.

The explicit noun is cheaper than an ownership guess.

The group label is not the owner

The workers in the queue renewed their leases.

Their refers to the workers, not to the queue. The prepositional phrase in the queue describes which workers are meant; it does not change the owner.

Singular and plural owners are mixed

The services changed its timeout.

Services is plural, so use their:

The services changed their timeout.

If one service changed one timeout, use the singular noun:

The service changed its timeout.

Do not choose the possessive form from the number of timeouts. Choose it from the number of services.

Two Active Checks

Check: Choose the correct form.

The cache reached ___ memory limit.

Think first, then reveal.

Answer: Use its: The cache reached its memory limit. The cache is one singular owner. It's memory limit would mean “It is memory limit,” which does not fit.

Check: Which sentence assigns the lease to the workers?

A. The scheduler renewed its lease.
B. The scheduler renewed the workers' lease.
C. The scheduler renewed their lease.

Think first, then reveal.

Answer: B is explicit: the workers are the owners. C is unsafe because their has no clearly named plural owner in the sentence. A assigns the lease to the scheduler.

Trade-offs and Limits

Possessive determiners make ownership compact. They let a status update connect a component to its configuration, state, resource, or signal without repeating a long noun phrase.

The trade-off is compact ownership versus explicit ownership. Its and their improve rhythm, but they can hide which of two nearby components is responsible for a resource. When ownership affects a rollback, an alert, or an investigation, repeat the owner or use a possessive noun phrase such as the worker's lease.

Possessive wording also does not prove legal or operational control. The service changed its policy tells us how the writer frames the relationship; it does not prove which repository, team, or deployment actually controls that policy. The signal at the boundary is a question such as “Whose policy is this?” If two answers are plausible, restore the owner.

Common Confusions

Confusion: its means “it is”

Why it is tempting:

Many English contractions use an apostrophe, and it's sounds the same as possessive its.

Better model:

Its introduces an associated noun. It's expands to it is or it has. Use the expansion test before sending a technical update.

Confusion: the associated noun controls the possessive form

Why it is tempting:

Writers look at policies, leases, or limits because those nouns are visible next to the form.

Better model:

The owner controls the form. One service has its policies; several services have their policies.

Confusion: their always means human people

Why it is tempting:

Some beginner examples use their only for people.

Better model:

Technical groups can be owners too: The workers renewed their leases. The group and the relationship are what matter.

Transfer Practice: Repair a Design Note

Read this note:

The services share a queue. Each service monitors it's depth and changes their retry policy when it grows. The workers report its lease status.

Repair the ownership links. Assume these facts:

A model answer is:

The services share a queue. Each service monitors the queue's depth and changes its retry policy when the queue grows. The workers report their lease status.

The answer uses queue's for the singular queue owner, its for the singular service inside Each service, and their for the plural services and workers. It uses the queue again at the end of the condition because it would make the owner of grows unclear. It removes it's because the intended meaning is possessive, not it is.

Your rewrite succeeds if every possessive form answers “whose?” with one clear owner, the owner number matches its or their, and no apostrophe is used where it is or it has does not fit. If your architecture assigns a policy to a separate controller, name that controller instead of accepting the model answer's ownership assumption.

Resources

Key Takeaways

PREVIOUS Review: Trace the Reference Before You Shorten It NEXT Itself and Themselves for Behavior and Emphasis