Skip to content

Commit be28f31

Browse files
stevenharmanuohzxela
authored andcommitted
Ruby is dynamically typed
1 parent 3034864 commit be28f31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ end
738738
**[⬆ back to top](#table-of-contents)**
739739

740740
### Avoid type-checking (part 1)
741-
Ruby is untyped, which means your functions can take any type of argument.
741+
Ruby is dynamically typed, which means your functions can take any type of argument.
742742
Sometimes you are bitten by this freedom and it becomes tempting to do
743743
type-checking in your functions. There are many ways to avoid having to do this.
744744
The first thing to consider is consistent APIs.
@@ -1619,7 +1619,7 @@ For things that don't fall under the purview of automatic formatting
16191619
for some guidance.
16201620

16211621
### Use consistent capitalization
1622-
Ruby is untyped, so capitalization tells you a lot about your variables,
1622+
Ruby is dynamically typed, so capitalization tells you a lot about your variables,
16231623
functions, etc. These rules are subjective, so your team can choose whatever
16241624
they want. The point is, no matter what you all choose, just be consistent.
16251625

0 commit comments

Comments
 (0)