Skip to content

Commit e778dd1

Browse files
committed
---
yaml --- r: 110457 b: refs/heads/try c: 286b62e h: refs/heads/master i: 110455: 75e1456 v: v3
1 parent 5d8ab39 commit e778dd1

File tree

156 files changed

+1476
-1499
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+1476
-1499
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: e415c25bcd81dc1f9a5a3d25d9b48ed2d545336b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: c7fac4471201977fdb1c0c0a26c87287e12dc644
5-
refs/heads/try: 6c5e1d092573a8c3085ac04a10572685b229a680
5+
refs/heads/try: 286b62e0da509888fb6cc05b5b174cb4353e6fd5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ documentation.
3131

3232
To build from the [tarball] do:
3333

34-
$ curl -O http://static.rust-lang.org/dist/rust-0.10.tar.gz
35-
$ tar -xzf rust-0.10.tar.gz
36-
$ cd rust-0.10
34+
$ curl -O http://static.rust-lang.org/dist/rust-nightly.tar.gz
35+
$ tar -xzf rust-nightly.tar.gz
36+
$ cd rust-nightly
3737

3838
Or to build from the [repo] do:
3939

@@ -58,8 +58,8 @@ documentation.
5858
4. Enjoy!
5959

6060
[repo]: https://github.com/mozilla/rust
61-
[tarball]: http://static.rust-lang.org/dist/rust-0.10.tar.gz
62-
[tutorial]: http://static.rust-lang.org/doc/0.10/tutorial.html
61+
[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz
62+
[tutorial]: http://static.rust-lang.org/doc/nightly/tutorial.html
6363

6464
## Notes
6565

branches/try/man/rustc.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH RUSTC "1" "March 2014" "rustc 0.10" "User Commands"
1+
.TH RUSTC "1" "March 2014" "rustc 0.11-pre" "User Commands"
22
.SH NAME
33
rustc \- rust compiler
44
.SH SYNOPSIS

branches/try/man/rustdoc.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH RUSTDOC "1" "March 2014" "rustdoc 0.10" "User Commands"
1+
.TH RUSTDOC "1" "March 2014" "rustdoc 0.11-pre" "User Commands"
22
.SH NAME
33
rustdoc \- generate documentation from Rust source code
44
.SH SYNOPSIS

branches/try/mk/docs.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ endif
271271
$(2) += doc/$(1)/index.html
272272
doc/$(1)/index.html: $$(LIB_DOC_DEP_$(1))
273273
@$$(call E, rustdoc $$@)
274-
$$(Q)$$(RUSTDOC) --cfg stage2 $$<
274+
$$(Q)$$(RUSTDOC) --cfg dox --cfg stage2 $$<
275275
endef
276276

277277
$(foreach crate,$(DOC_CRATES),$(eval $(call DEF_LIB_DOC,$(crate),DOC_TARGETS)))

branches/try/mk/main.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
######################################################################
1414

1515
# The version number
16-
CFG_RELEASE_NUM=0.10
17-
CFG_RELEASE_LABEL=
16+
CFG_RELEASE_NUM=0.11
17+
CFG_RELEASE_LABEL=-pre
1818

1919
ifndef CFG_ENABLE_NIGHTLY
2020
# This is the normal version string

branches/try/mk/tests.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ endif
694694
ifeq ($(2),$$(CFG_BUILD))
695695
$$(call TEST_OK_FILE,$(1),$(2),$(3),doc-$(4)): $$(DOCTESTDEP_$(1)_$(2)_$(3)_$(4))
696696
@$$(call E, run doc-$(4) [$(2)])
697-
$$(Q)$$(RUSTDOC_$(1)_T_$(2)_H_$(3)) --test $$< --test-args "$$(TESTARGS)" && touch $$@
697+
$$(Q)$$(RUSTDOC_$(1)_T_$(2)_H_$(3)) --cfg dox --test $$< --test-args "$$(TESTARGS)" && touch $$@
698698
else
699699
$$(call TEST_OK_FILE,$(1),$(2),$(3),doc-$(4)):
700700
touch $$@

branches/try/src/compiletest/procsrv.rs

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,25 @@ use std::str;
1313
use std::io::process::{ProcessExit, Process, ProcessConfig, ProcessOutput};
1414

1515
#[cfg(target_os = "win32")]
16-
fn target_env(lib_path: &str, prog: &str) -> Vec<(~str,~str)> {
17-
18-
let mut env = os::env();
16+
fn target_env(lib_path: &str, prog: &str) -> Vec<(~str, ~str)> {
17+
let env = os::env();
1918

2019
// Make sure we include the aux directory in the path
2120
assert!(prog.ends_with(".exe"));
2221
let aux_path = prog.slice(0u, prog.len() - 4u).to_owned() + ".libaux";
2322

24-
env = env.map(|pair| {
25-
let (k,v) = (*pair).clone();
26-
if k == ~"PATH" { (~"PATH", v + ";" + lib_path + ";" + aux_path) }
27-
else { (k,v) }
28-
});
23+
let mut new_env: Vec<_> = env.move_iter().map(|(k, v)| {
24+
let new_v = if "PATH" == k {
25+
format!("{};{};{}", v, lib_path, aux_path)
26+
} else {
27+
v
28+
};
29+
(k, new_v)
30+
}).collect();
2931
if prog.ends_with("rustc.exe") {
30-
env.push((~"RUST_THREADS", ~"1"));
32+
new_env.push((~"RUST_THREADS", ~"1"));
3133
}
32-
return env;
34+
return new_env;
3335
}
3436

3537
#[cfg(target_os = "linux")]

branches/try/src/compiletest/runtest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ fn check_expected_errors(expected_errors: Vec<errors::ExpectedError> ,
529529
c
530530
}
531531
} ).collect();
532-
str::from_chars( c )
532+
str::from_chars(c.as_slice())
533533
}
534534
535535
#[cfg(target_os = "win32")]

branches/try/src/doc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ To generate .pot and .po files, do something like:
5353
~~~~
5454
po4a --copyright-holder="The Rust Project Developers" \
5555
--package-name="Rust" \
56-
--package-version="0.10" \
56+
--package-version="0.11-pre" \
5757
-M UTF-8 -L UTF-8 \
5858
src/doc/po4a.conf
5959
~~~~
6060

61-
(the version number must be changed if it is not 0.10 now.)
61+
(the version number must be changed if it is not 0.11-pre now.)
6262

6363
Now you can translate documents with .po files, commonly used with gettext. If
6464
you are not familiar with gettext-based translation, please read the online

branches/try/src/doc/po/ja/complement-cheatsheet.md.po

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.10\n"
8+
"Project-Id-Version: Rust 0.11-pre\n"
99
"POT-Creation-Date: 2014-02-03 08:13+0900\n"
1010
"PO-Revision-Date: 2014-01-13 12:01+0900\n"
1111
"Last-Translator: Automatically generated\n"
@@ -20,14 +20,14 @@ msgstr ""
2020
#: src/doc/complement-cheatsheet.md:8
2121
#, fuzzy
2222
#| msgid ""
23-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
24-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
23+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
24+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
2525
msgid ""
2626
"Use [`ToStr`](http://static.rust-lang.org/doc/master/std/to_str/trait.ToStr."
2727
"html)."
2828
msgstr ""
29-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
30-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
29+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
30+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
3131

3232
#. type: Plain text
3333
#: src/doc/complement-cheatsheet.md:13
@@ -46,15 +46,15 @@ msgstr ""
4646
#: src/doc/complement-cheatsheet.md:17
4747
#, fuzzy
4848
#| msgid ""
49-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
50-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
49+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
50+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
5151
msgid ""
5252
"Use [`FromStr`](http://static.rust-lang.org/doc/master/std/from_str/trait."
5353
"FromStr.html), and its helper function, [`from_str`](http://static.rust-lang."
5454
"org/doc/master/std/from_str/fn.from_str.html)."
5555
msgstr ""
56-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
57-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
56+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
57+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
5858

5959
#. type: Plain text
6060
#: src/doc/complement-cheatsheet.md:22
@@ -73,14 +73,14 @@ msgstr ""
7373
#: src/doc/complement-cheatsheet.md:26
7474
#, fuzzy
7575
#| msgid ""
76-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
77-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
76+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
77+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
7878
msgid ""
7979
"Use [`ToStrRadix`](http://static.rust-lang.org/doc/master/std/num/trait."
8080
"ToStrRadix.html)."
8181
msgstr ""
82-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
83-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
82+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
83+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
8484

8585
#. type: Plain text
8686
#: src/doc/complement-cheatsheet.md:29
@@ -108,15 +108,15 @@ msgstr ""
108108
#: src/doc/complement-cheatsheet.md:37
109109
#, fuzzy
110110
#| msgid ""
111-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
112-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
111+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
112+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
113113
msgid ""
114114
"Use [`FromStrRadix`](http://static.rust-lang.org/doc/master/std/num/trait."
115115
"FromStrRadix.html), and its helper function, [`from_str_radix`](http://"
116116
"static.rust-lang.org/doc/master/std/num/fn.from_str_radix.html)."
117117
msgstr ""
118-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
119-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
118+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
119+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
120120

121121
#. type: Plain text
122122
#: src/doc/complement-cheatsheet.md:40
@@ -153,16 +153,16 @@ msgstr "## 演算子"
153153
#: src/doc/complement-cheatsheet.md:50
154154
#, fuzzy
155155
#| msgid ""
156-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
157-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
156+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
157+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
158158
msgid ""
159159
"Use [`File::open`](http://static.rust-lang.org/doc/master/std/io/fs/struct."
160160
"File.html#method.open) to create a [`File`](http://static.rust-lang.org/doc/"
161161
"master/std/io/fs/struct.File.html) struct, which implements the [`Reader`]"
162162
"(http://static.rust-lang.org/doc/master/std/io/trait.Reader.html) trait."
163163
msgstr ""
164-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
165-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
164+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
165+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
166166

167167
#. type: Plain text
168168
#: src/doc/complement-cheatsheet.md:54
@@ -177,15 +177,15 @@ msgstr ""
177177
#: src/doc/complement-cheatsheet.md:63
178178
#, fuzzy
179179
#| msgid ""
180-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
181-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
180+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
181+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
182182
msgid ""
183183
"Use the [`lines`](http://static.rust-lang.org/doc/master/std/io/trait.Buffer."
184184
"html#method.lines) method on a [`BufferedReader`](http://static.rust-lang."
185185
"org/doc/master/std/io/buffered/struct.BufferedReader.html)."
186186
msgstr ""
187-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
188-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
187+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
188+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
189189

190190
#. type: Plain text
191191
#: src/doc/complement-cheatsheet.md:67
@@ -207,14 +207,14 @@ msgstr "## 他のクレートの利用"
207207
#: src/doc/complement-cheatsheet.md:81
208208
#, fuzzy
209209
#| msgid ""
210-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
211-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
210+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
211+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
212212
msgid ""
213213
"Use the [`find_str`](http://static.rust-lang.org/doc/master/std/str/trait."
214214
"StrSlice.html#tymethod.find_str) method."
215215
msgstr ""
216-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
217-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
216+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
217+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
218218

219219
#. type: Plain text
220220
#: src/doc/complement-cheatsheet.md:88 src/doc/guide-container.md:4
@@ -226,43 +226,43 @@ msgstr "## 本書の表記について"
226226
#: src/doc/complement-cheatsheet.md:92
227227
#, fuzzy
228228
#| msgid ""
229-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
230-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
229+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
230+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
231231
msgid ""
232232
"The [`Container`](http://static.rust-lang.org/doc/master/std/container/trait."
233233
"Container.html) trait provides the `len` method."
234234
msgstr ""
235-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
236-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
235+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
236+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
237237

238238
#. type: Plain text
239239
#: src/doc/complement-cheatsheet.md:104
240240
#, fuzzy
241241
#| msgid ""
242-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
243-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
242+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
243+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
244244
msgid ""
245245
"Use the [`iter`](http://static.rust-lang.org/doc/master/std/vec/trait."
246246
"ImmutableVector.html#tymethod.iter) method."
247247
msgstr ""
248-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
249-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
248+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
249+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
250250

251251
#. type: Plain text
252252
#: src/doc/complement-cheatsheet.md:113
253253
#, fuzzy
254254
#| msgid ""
255-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
256-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
255+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
256+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
257257
msgid ""
258258
"(See also [`mut_iter`](http://static.rust-lang.org/doc/master/std/vec/trait."
259259
"MutableVector.html#tymethod.mut_iter) which yields `&mut int` and "
260260
"[`move_iter`](http://static.rust-lang.org/doc/master/std/vec/trait."
261261
"OwnedVector.html#tymethod.move_iter) which yields `int` while consuming the "
262262
"`values` vector.)"
263263
msgstr ""
264-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
265-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
264+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
265+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"
266266

267267
#. type: Plain text
268268
#: src/doc/complement-cheatsheet.md:115 src/doc/rust.md:3019

branches/try/src/doc/po/ja/complement-lang-faq.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.10\n"
8+
"Project-Id-Version: Rust 0.11-pre\n"
99
"POT-Creation-Date: 2014-02-03 08:13+0900\n"
1010
"PO-Revision-Date: 2014-01-13 12:01+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try/src/doc/po/ja/complement-project-faq.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.10\n"
8+
"Project-Id-Version: Rust 0.11-pre\n"
99
"POT-Creation-Date: 2014-02-03 08:13+0900\n"
1010
"PO-Revision-Date: 2014-01-13 12:01+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try/src/doc/po/ja/complement-usage-faq.md.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.10\n"
8+
"Project-Id-Version: Rust 0.11-pre\n"
99
"POT-Creation-Date: 2014-02-03 08:13+0900\n"
1010
"PO-Revision-Date: 2014-02-03 08:13+0900\n"
1111
"Last-Translator: Automatically generated\n"
@@ -27,9 +27,9 @@ msgstr "## 構造体"
2727
#: src/doc/complement-usage-faq.md:18
2828
#, fuzzy
2929
#| msgid ""
30-
#| "[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz [win-exe]: "
31-
#| "http://static.rust-lang.org/dist/rust-0.7-install.exe"
30+
#| "[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz [win-exe]: "
31+
#| "http://static.rust-lang.org/dist/rust-nightly-install.exe"
3232
msgid "[1]:http://doc.rust-lang.org/doc/master/rust.html#logging-system"
3333
msgstr ""
34-
"[tarball]: http://static.rust-lang.org/dist/rust-0.7.tar.gz\n"
35-
"[win-exe]: http://static.rust-lang.org/dist/rust-0.7-install.exe"
34+
"[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n"
35+
"[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe"

branches/try/src/doc/po/ja/guide-conditions.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.10\n"
8+
"Project-Id-Version: Rust 0.11-pre\n"
99
"POT-Creation-Date: 2014-02-03 08:13+0900\n"
1010
"PO-Revision-Date: 2014-01-13 12:01+0900\n"
1111
"Last-Translator: Automatically generated\n"

branches/try/src/doc/po/ja/guide-container.md.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: Rust 0.10\n"
8+
"Project-Id-Version: Rust 0.11-pre\n"
99
"POT-Creation-Date: 2014-02-03 08:13+0900\n"
1010
"PO-Revision-Date: 2014-01-13 12:01+0900\n"
1111
"Last-Translator: Automatically generated\n"

0 commit comments

Comments
 (0)