Browse Source

Ref. to node-semver

Hannes Hirzel 9 years ago
parent
commit
c53c34369c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      faq.md

+ 1 - 1
faq.md

@@ -65,7 +65,7 @@ If you want to be sure which version is latest and which one is bleedingedge use
 #### What does the caret ^ do in front of a versionnumber?
 
 ``^0.14.1`` is a shortcut for ``>=0.14.1 <0.15.0``. 
-Contrary to a common misconception, package.json / bower.json do not show the version that is installed, but instead they describe what interval of versions is required for installation itself.
+Contrary to a common misconception, package.json / bower.json do not show the version that is installed, but instead they describe what interval of versions is required for installation itself. Ref: node-semver [caret ranges](https://github.com/npm/node-semver#caret-ranges-123-025-004).
 
 
 #### How do I get the text value of an input field?