From 92e4bffcb1cc641782fc63862ba02316c895fbd1 Mon Sep 17 00:00:00 2001 From: Jay Wang Date: Fri, 6 Jun 2025 00:04:03 +0900 Subject: [PATCH] nit: add missing period --- src/items/static-items.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/static-items.md b/src/items/static-items.md index a9c47fd2f..7b62d0918 100644 --- a/src/items/static-items.md +++ b/src/items/static-items.md @@ -106,7 +106,7 @@ r[items.static.mut.intro] If a static item is declared with the `mut` keyword, then it is allowed to be modified by the program. One of Rust's goals is to make concurrency bugs hard to run into, and this is obviously a very large source of race conditions or -other bugs +other bugs. r[items.static.mut.safety] For this reason, an `unsafe` block is required when either reading