Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 225 Bytes

camelcasing.md

File metadata and controls

12 lines (10 loc) · 225 Bytes
# Bad
class HTTPInterface
end

# Good
class HttpInterface
end

Note: this used to be switched but was changed due to preferring the snake case representation being http_interface instead of h_t_t_p_interface.