Skip to content

Commit 8c64a98

Browse files
committed
tutorial: Minor tweaks to intro
1 parent 08a99d6 commit 8c64a98

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

doc/tutorial.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ the whole language, though not with the depth and precision of the
1414
## Language Overview
1515

1616
Rust is a systems programming language with a focus on type safety,
17-
memory safety, and performance. It is intended for writing large, high
18-
performance applications while preventing several classes of errors
19-
commonly found in languages like C++. Rust has a sophisticated memory
20-
model that enables many of the efficient data structures used in C
21-
while disallowing invalid memory access that would otherwise cause
22-
segmentation faults. Like other systems languages it is statically
23-
typed and compiled ahead of time.
17+
memory safety, concurrency and performance. It is intended for writing
18+
large, high performance applications while preventing several classes
19+
of errors commonly found in languages like C++. Rust has a
20+
sophisticated memory model that enables many of the efficient data
21+
structures used in C++ while disallowing invalid memory access that
22+
would otherwise cause segmentation faults. Like other systems
23+
languages it is statically typed and compiled ahead of time.
2424

2525
As a multi-paradigm language it has strong support for writing code in
2626
procedural, functional and object-oriented styles. Some of it's nice

0 commit comments

Comments
 (0)