Skip to content

Commit 4c51fb1

Browse files
committed
slight doc touch
1 parent a9e6499 commit 4c51fb1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/unicode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
import fileinput, re, os, sys, operator
2222

23-
preamble = '''// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
23+
preamble = '''// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2424
// file at the top-level directory of this distribution and at
2525
// http://rust-lang.org/COPYRIGHT.
2626
//
@@ -290,7 +290,7 @@ def optimize_width_table(wtable):
290290
unicode_version = re.search(pattern, readme.read()).groups()
291291
rf.write("""
292292
/// The version of [Unicode](http://www.unicode.org/)
293-
/// that this version of unicode_charwidth is based on.
293+
/// that this version of unicode-width is based on.
294294
pub const UNICODE_VERSION: (u64, u64, u64) = (%s, %s, %s);
295295
296296
""" % unicode_version)

src/tables.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#![allow(missing_docs, non_upper_case_globals, non_snake_case)]
1414

1515
/// The version of [Unicode](http://www.unicode.org/)
16-
/// that this version of unicode_charwidth is based on.
16+
/// that this version of unicode-width is based on.
1717
pub const UNICODE_VERSION: (u64, u64, u64) = (7, 0, 0);
1818

1919
pub mod charwidth {

0 commit comments

Comments
 (0)