File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ declare namespace Sinon {
332332 /**
333333 * Returns the nth call.
334334 * Accessing individual calls helps with more detailed behavior verification when the spy is called more than once.
335- * @param n Zero based index of the spy call.
335+ * @param n Zero- based index of the spy call.
336336 */
337337 getCall ( n : number ) : SinonSpyCall < TArgs , TReturnValue > ;
338338 /**
@@ -569,7 +569,7 @@ declare namespace Sinon {
569569 * Defines the behavior of the stub on the @param n call. Useful for testing sequential interactions.
570570 * There are methods onFirstCall, onSecondCall,onThirdCall to make stub definitions read more naturally.
571571 * onCall can be combined with all of the behavior defining methods in this section. In particular, it can be used together with withArgs.
572- * @param n
572+ * @param n Zero-based index of the spy call.
573573 */
574574 onCall ( n : number ) : SinonStub < TArgs , TReturnValue > ;
575575 /**
You can’t perform that action at this time.
0 commit comments