Skip to content

Commit

Permalink
Merge pull request ubccpsc#122 from Ihor16/patch-1
Browse files Browse the repository at this point in the history
Grammar fix in Languages.md

Thanks @Ihor16!
  • Loading branch information
bestchai authored Jan 12, 2023
2 parents db55817 + b3ec62d commit f619bcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/readings/Languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ While JavaScript started as an interpreted language, all modern JavaScript imple

#### Static vs. dynamic types

Another important language design question is whether the language uses static or dynamic type checking. In languages that are statically type checked, _variables_ are given types and a compiler checks that assignments to and usages of these variables are do not violate the type declaration. For example, in Java:
Another important language design question is whether the language uses static or dynamic type checking. In languages that are statically type checked, _variables_ are given types, and a compiler checks that assignments to and usages of these variables do not violate the type declaration. For example, in Java:

```java
int age; // age is declared to be an int
Expand Down

0 comments on commit f619bcc

Please sign in to comment.