The example code in the embedding documentation for bindForeignMethod() incorrectly used `!isStatic` when checking for a static method `Math.add(_,_)`. Changed the condition to `isStatic` so the example correctly demonstrates how to dispatch static foreign methods.