From 83076b503428d370e61847f1281703b94397b722 Mon Sep 17 00:00:00 2001 From: Lukas Wirth Date: Tue, 3 Dec 2024 11:27:35 +0100 Subject: [PATCH] Fix placement of the weak keyword table --- src/keywords.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/keywords.md b/src/keywords.md index cec609bc7..391253e32 100644 --- a/src/keywords.md +++ b/src/keywords.md @@ -116,14 +116,16 @@ is possible to declare a variable or method with the name `union`. Beginning in the 2018 edition, `dyn` has been promoted to a strict keyword. +* `safe` is used for functions and statics, which has meaning in [external blocks]. + > **Lexer**\ > KW_MACRO_RULES : `macro_rules`\ > KW_UNION : `union`\ > KW_STATICLIFETIME : `'static` +> KW_SAFE : `safe` > > **Lexer 2015**\ > KW_DYN : `dyn` -* `safe` is used for functions and statics, which has meaning in [external blocks]. [items]: items.md [Variables]: variables.md