about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDavid Wood <david@davidtw.co>2018-07-19 17:03:17 +0100
committerDavid Wood <david@davidtw.co>2018-07-19 17:03:17 +0100
commitb671bdc381c8d4b870e408ae83b281ec3ede855f (patch)
tree1943c29a1319c477669bee33ae00801337a86db8 /src
parent959a13d53e27ca92b59798e6c6737f8249d59a2e (diff)
downloadrust-b671bdc381c8d4b870e408ae83b281ec3ede855f.tar.gz
rust-b671bdc381c8d4b870e408ae83b281ec3ede855f.zip
Updated FRU terminology.
Diffstat (limited to 'src')
-rw-r--r--src/librustdoc/html/render.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/render.rs b/src/librustdoc/html/render.rs
index 78cf7457187..9ae92d06dbd 100644
--- a/src/librustdoc/html/render.rs
+++ b/src/librustdoc/html/render.rs
@@ -2277,7 +2277,7 @@ fn document_non_exhaustive(w: &mut fmt::Formatter, item: &clean::Item) -> fmt::R
                        Therefore, non-exhaustive structs cannot be constructed in external crates \
                        using the traditional <code>Struct {{ .. }}</code> syntax; cannot be \
                        matched against without a wildcard <code>..</code>; and \
-                       functional-record-updates do not work.")?;
+                       struct update syntax will not work.")?;
         } else if item.is_enum() {
             write!(w, "Non-exhaustive enums could have additional variants added in future. \
                        Therefore, when matching against variants of non-exhaustive enums, an \