Skip to content

Commit 7faf821

Browse files
committed
---
yaml --- r: 234144 b: refs/heads/beta c: 5c56887 h: refs/heads/master v: v3
1 parent aeea9f7 commit 7faf821

File tree

13 files changed

+2219
-206
lines changed

13 files changed

+2219
-206
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: 9ac36f46650d0f4d92b5111688d2fb84a50d591f
26+
refs/heads/beta: 5c56887903bec6e1a638f8bdcfe2f22ec0fd000a
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: 370fe2786109360f7c35b8ba552b83b773dd71d6
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ then
978978
LLVM_VERSION=$($LLVM_CONFIG --version)
979979

980980
case $LLVM_VERSION in
981-
(3.[5-7]*)
981+
(3.[5-8]*)
982982
msg "found ok version of LLVM: $LLVM_VERSION"
983983
;;
984984
(*)
@@ -1052,7 +1052,7 @@ then
10521052
esac
10531053
else
10541054
case $CFG_CLANG_VERSION in
1055-
(3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7*)
1055+
(3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7* | 3.8*)
10561056
step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
10571057
;;
10581058
(*)

branches/beta/src/doc/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1489,14 +1489,14 @@ impl Num for f64 {
14891489
let x: f64 = Num::from_i32(42);
14901490
```
14911491

1492-
Traits may inherit from other traits. For example, in
1492+
Traits may inherit from other traits. Consider the following example:
14931493

14941494
```
14951495
trait Shape { fn area(&self) -> f64; }
14961496
trait Circle : Shape { fn radius(&self) -> f64; }
14971497
```
14981498

1499-
the syntax `Circle : Shape` means that types that implement `Circle` must also
1499+
The syntax `Circle : Shape` means that types that implement `Circle` must also
15001500
have an implementation for `Shape`. Multiple supertraits are separated by `+`,
15011501
`trait Circle : Shape + PartialEq { }`. In an implementation of `Circle` for a
15021502
given type `T`, methods can refer to `Shape` methods, since the typechecker

0 commit comments

Comments
 (0)