1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00

fixed typos

This commit is contained in:
Paul Rogalinski 2014-12-19 04:05:25 +01:00
parent a8a6b8904c
commit 2f9e2b13c5
2 changed files with 2 additions and 2 deletions

View file

@ -314,7 +314,7 @@ Number.prototype.clamp = function(min, max) {
* For a format string with N replacement indices, you can call .format
* with M <= N arguments. The result is going to be a format string
* with N-M replacement indices, properly counting from 0 .. N-M.
* The following Example should explane the usage of partial aplied format:
* The following Example should explain the usage of partial applied format:
* "{0}:{1}:{2}".format("a","b","c") === "{0}:{1}:{2}".format("a","b").format("c")
* "{0}:{1}:{2}".format("a").format("b").format("c") === "{0}:{1}:{2}".format("a").format("b", "c")
**/