@@ -1084,8 +1084,8 @@ let managed_box : @Point = @Point { x: 5.0, y: 1.0 };
10841084let owned_box : ~ Point = ~ Point { x: 7.0, y: 9.0 };
10851085~~~
10861086
1087- Suppose we wanted to write a procedure that computed the distance
1088- between any two points, no matter where they were stored. For example,
1087+ Suppose we want to write a procedure that computes the distance
1088+ between any two points, no matter where they are stored. For example,
10891089we might like to compute the distance between `on_the_stack` and
10901090`managed_box`, or between `managed_box` and `owned_box`. One option is
10911091to define a function that takes two arguments of type point—that is,
@@ -1230,7 +1230,7 @@ let area = rect.area();
12301230~~~
12311231
12321232You can write an expression that dereferences any number of pointers
1233- automatically. For example, if you felt inclined, you could write
1233+ automatically. For example, if you feel inclined, you could write
12341234something silly like
12351235
12361236~~~
@@ -1808,7 +1808,7 @@ s.draw_borrowed();
18081808~~~
18091809
18101810Implementations may also define standalone (sometimes called "static")
1811- methods. The absence of a ` self ` paramater distinguishes such methods.
1811+ methods. The absence of a ` self ` parameter distinguishes such methods.
18121812These methods are the preferred way to define constructor functions.
18131813
18141814~~~~ {.xfail-test}
@@ -2522,7 +2522,7 @@ will not be compiled successfully.
25222522
25232523## A minimal example
25242524
2525- Now for something that you can actually compile yourself. We have
2525+ Now for something that you can actually compile yourself, we have
25262526these two files:
25272527
25282528~~~~
0 commit comments