Max Moiseev
61c837209b
Merge remote-tracking branch 'origin/master' into swift-3-api-guidelines
2016-02-04 16:13:39 -08:00
practicalswift
4b0571bae8
[gardening] Fix documentation typos
2016-01-24 12:52:01 +01:00
Marat S
119d501f23
Fix lowercase 'Void'
2016-01-23 23:39:47 +03:00
Marat S
32154de115
fix typo
2016-01-23 07:41:25 +03:00
Dmitri Gribenko
9bcd5a1056
Collection.length => .count
2016-01-22 18:41:19 -08:00
ken0nek
50c88b9d15
Add spaces before and after closure arrow in docs
2015-12-23 05:04:58 +09:00
zerotypos-found
0c1df3577e
Fix typo: a --> an, an --> a.
2015-12-17 15:10:25 +09:00
Jaden Geller
0183833512
Fixed issue in design document where incorrect word mentioned
2015-12-12 14:56:09 -08:00
Chris Willmore
0867e2e59b
[docs] Fix linked list definition in Generics.rst
...
Swift SVN r23471
2014-11-20 05:22:19 +00:00
Dave Abrahams
6f03d836eb
[stdlib] Half-open ranges are now spelled x...y
...
Fully-closed ranges are coming soon. See the release notes for details.
Implements the "hard" part of <rdar://problem/14586400>
Swift SVN r13674
2014-02-08 05:37:57 +00:00
Dmitri Hrybenko
81dc5deee8
Change 'def' keyword back to 'func'
...
Swift SVN r10522
2013-11-17 07:45:28 +00:00
Dmitri Hrybenko
91ce21666d
Change 'func' keyword to 'def'
...
I tried hard find all references to 'func' in documentation, comments and
diagnostics, but I am sure that I missed a few. If you find something, please
let me know.
rdar://15346654
Swift SVN r9886
2013-11-02 01:00:42 +00:00
Howard Hinnant
36e6f363f1
Further Vector -> Array migration. Also updated Array with several good suggestions from Dave A.
...
Swift SVN r9418
2013-10-16 20:48:24 +00:00
Joe Groff
26125d050b
Update 'union' references in other docs.
...
Swift SVN r8483
2013-09-20 04:41:49 +00:00
Doug Gregor
97e772bb43
Generics manifesto: Rename "requires" to "where" and update syntax.
...
Swift SVN r8182
2013-09-13 02:19:35 +00:00
Chris Lattner
fb801cd73c
a couple more.
...
Swift SVN r7848
2013-09-03 16:52:00 +00:00
Chris Lattner
938ee19b36
This -> Self.
...
Swift SVN r7847
2013-09-03 16:50:44 +00:00
Chris Lattner
a3928d4c70
fix this -> self conversion issue.
...
Swift SVN r7663
2013-08-28 04:10:19 +00:00
Ted Kremenek
8f5b8ccb02
Rename "This" to "Self" and "this" to "self".
...
This was not likely an error-free change. Where you see problems
please correct them. This went through a fairly tedious audit
before committing, but comments might have been changed incorrectly,
not changed at all, etc.
Swift SVN r7631
2013-08-27 21:58:27 +00:00
Jordan Rose
674a03b085
Replace "oneof" with "union"...everywhere.
...
We haven't fully updated references to union cases, and enums still are not
their own thing yet, but "oneof" is gone. Long live "union"!
Swift SVN r6783
2013-07-31 21:33:33 +00:00
Dave Abrahams
c97bab033e
General documentation corrections
...
Swift SVN r5628
2013-06-17 21:15:02 +00:00
Joe Groff
b1ef4f4a2a
Update description of generic type disambiguation in Generics.rst.
...
Swift SVN r5480
2013-06-05 16:58:14 +00:00
Dmitri Hrybenko
625f059d7e
Fix a few typos in documentation
...
Swift SVN r5474
2013-06-04 23:02:51 +00:00
Dave Abrahams
eccb25a6b7
docs/Generics.rst: disable the currently-failing test
...
If this stuff is going to be run by the buildbot, it should start out clean
Swift SVN r4647
2013-04-09 22:33:15 +00:00
Dave Abrahams
a2cc84eb19
Generics.rst: explanatory comment for LitRe @ignore directive
...
Swift SVN r4513
2013-03-28 13:45:16 +00:00
Dave Abrahams
60dc2cb569
Generics.rst: add missing declarations to example
...
Swift SVN r4512
2013-03-28 13:45:15 +00:00
Dave Abrahams
424df116c3
Generics.rst: test C++ code with whatever compiler CMake finds
...
Swift SVN r4511
2013-03-28 13:45:14 +00:00
Dave Abrahams
d357f8d071
Generics.rst: add some initial LitRe testing
...
Swift SVN r4507
2013-03-28 13:45:09 +00:00
Dave Abrahams
0951927a7c
Fix typos ("- >" becomes "->")
...
Swift SVN r4290
2013-03-06 00:02:08 +00:00
Chris Lattner
076e035c4f
add a wishlist to the roadmap, fix a typo in Generics.rst
...
Swift SVN r4076
2013-02-18 20:27:07 +00:00
Chris Lattner
8307e73595
remove some extraneous ;'s
...
Swift SVN r4045
2013-02-14 01:46:11 +00:00
Chris Lattner
f0c46ac962
ascii'ify
...
Swift SVN r4024
2013-02-13 05:23:58 +00:00
Dave Zarzycki
c825debf2f
Cleanup Enumeration
...
I tried to transform getEnumeratorType() into a VarDecl, but IRGen hasn't implement this feature yet.
Swift SVN r3527
2012-12-18 02:12:19 +00:00
Dave Zarzycki
b23db009d2
Comparable implies Equality
...
((x >= y) && (x <= y)) == (x == y)
((x > y) || (x < y)) == (x != y)
Swift SVN r3173
2012-11-14 01:37:00 +00:00
Daniel Dunbar
1eeecdd874
Change Swift docs to use Sphinx.
...
- I've converted every document except the LangRef, which is more trouble to
convert because of the use of styling to embed notes.
- 'make html' with sphinx-build in your path to build the docs.
Now back to my regularly scheduled breaking things. :)
Swift SVN r2410
2012-07-23 18:50:00 +00:00