While reading about snake_case on Wikipedia, I saw this statement:
the first letter of each word is written in lowercase. Just the first letter?
So I commented on this in the talk section.
The article states "the first letter of each word is written in lowercase." Are not all letters in snake_case lower case? If so ... — Preceding unsigned comment added by MichaelRpdx (talk • contribs) 16:23, 22 February 2023 (UTC)
I suspect it means "at least the first letter" because if it said "all letters", that would require additional evidence. Even as it is, I doubt its accuracy: put_HTML_code_here looks valid to me. So I reverse your question and ask "where is the evidence that 'the first letter of each word is written in lowercase'"? In Python, yes it is but can it be said to be generally true?
A test of this idea lead to:
warning: function `buffalo_CASE` should have a snake case name
--> src/main.rs:20:7
|
20 | fn buffalo_CASE() {
| ^^^^^^^^^^^^ help: convert the identifier to snake case: `buffalo_case`
|
= note: `#[warn(non_snake_case)]` on by default
Is there a reference on the web that I can cite on Wikipedia?