Skip to content

Commit 1af274f

Browse files
authored
Merge pull request #104 from jetbrains-academy/stephen-hero-patch-7
Update task.md
2 parents f9eecdc + 824dc57 commit 1af274f

File tree

1 file changed

+2
-2
lines changed
  • aliasServer/aliasServerPackages

1 file changed

+2
-2
lines changed

aliasServer/aliasServerPackages/task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ a Kotlin project is structured into **packages**.
55
A package contains one or more Kotlin files,
66
with files linked to a package using a package header.
77
A file may contain exactly one or zero package headers,
8-
meaning each file belongs to exactly one package.
8+
which means that each file belongs to exactly one package.
99

1010
In other words, packages allow you to specify the full
1111
address to some Kotlin objects, such as functions.
1212
This is similar to the full address in an apartment building –
1313
if you have several tenants with the same last name living in the building,
14-
then the full address including the street name, house number, and apartment number,
14+
then the full address including the street name, house number, and apartment number
1515
will help you find the right person.
1616

1717
In code, the package is placed at the very top of the Kotlin file and starts with the [`package`](https://kotlinlang.org/docs/packages.html) keyword.

0 commit comments

Comments
 (0)