Skip to content

Commit 5fc2b36

Browse files
amartini51Chuck Toporek
andcommitted
Omit comma when both verbs share a subject.
Co-authored-by: Chuck Toporek <chuck_toporek@apple.com>
1 parent c2fc6a4 commit 5fc2b36

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Sources/TSPL/TSPL.docc/LanguageGuide/Generics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Generics
44

5-
Write code that works for multiple types, and specify requirements for those types.
5+
Write code that works for multiple types and specify requirements for those types.
66

77
*Generic code* enables you to write flexible, reusable functions and types
88
that can work with any type, subject to requirements that you define.

Sources/TSPL/TSPL.docc/LanguageGuide/TheBasics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# The Basics
44

5-
Work with common kinds of data, and write basic syntax.
5+
Work with common kinds of data and write basic syntax.
66

77
Swift is a programming language for iOS, macOS, watchOS, and tvOS app development.
88
If you have experience developing in C or Objective-C,

Sources/TSPL/TSPL.docc/LanguageGuide/TypeCasting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Type Casting
44

5-
Determine a value's runtime type, and give it more specific type information.
5+
Determine a value's runtime type and give it more specific type information.
66

77
*Type casting* is a way to check the type of an instance,
88
or to treat that instance as a different

Sources/TSPL/TSPL.docc/ReferenceManual/Statements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Statements
44

5-
Structure groups of expressions, and control their behavior.
5+
Structure groups of expressions and control their behavior.
66

77
In Swift, there are three kinds of statements: simple statements, compiler control statements,
88
and control flow statements.

0 commit comments

Comments
 (0)