docs: fix typo with punctuation in example code (#207)

drylint committed Sep 17, 2022 at 08:03 UTC 847716769aa0abbe9bd7e0abb4277f70ae6dcec3
1 file changed +1 -1
content/packages-and-modules/contributing-packages-to-the-registry/specifying-dependencies-and-devdependencies-in-a-package-json-file.mdx
+1 -1
@@ -53,7 +53,7 @@ To add devDependencies to a `package.json` file, in a text editor, add an attrib
53 "another_dep": "~2.2.0"
54 },
55 "devDependencies" : {
56 - "my_test_framework": "^3.1.0".
56 + "my_test_framework": "^3.1.0",
57 "another_dev_dep": "1.0.0 - 1.2.0"
58 }
59 ```