From 907eb75cc0b944fca82bce022db84ad9c04a007f Mon Sep 17 00:00:00 2001 From: Daniel Wagner-Hall Date: Wed, 22 Jan 2025 14:04:46 +0000 Subject: [PATCH] Update common-content/en/module/tools/comparing-javascript-and-python/index.md Co-authored-by: Sally McGrath --- .../en/module/tools/comparing-javascript-and-python/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common-content/en/module/tools/comparing-javascript-and-python/index.md b/common-content/en/module/tools/comparing-javascript-and-python/index.md index ca2f1248f..19e414b80 100644 --- a/common-content/en/module/tools/comparing-javascript-and-python/index.md +++ b/common-content/en/module/tools/comparing-javascript-and-python/index.md @@ -13,7 +13,7 @@ objectives = [ JavaScript and Python have many things in common. -Most of the differences between them are quite cosmetic. e.g. +Most differences are "cosmetic". Here are some examples of cosmetic differnces: * Some functions and operators have different names. But often there are functions/operators which do exactly the same thing. * JavaScript uses `{}` around blocks of code and we optionally _choose_ to indent code, whereas Python uses `:` and _required_ indents. * In JavaScript we choose to name variables in `camelCase`, whereas in Python we choose to name variables in `snake_case` (but in both langues we _could_ do either).