diff --git a/Note-style-guide.md b/Note-style-guide.md index bd9a005..d41911c 100644 --- a/Note-style-guide.md +++ b/Note-style-guide.md @@ -195,6 +195,10 @@ Examples: A ```for``` loop is always preferable to a ```while``` loop unless the loop counts in a non-uniform way (making it difficult to express as a ```for```). +# Impls + +Put `pub` modifiers on method names, not on the impls. + # Questions and TODO