Skip to content

Commit

Permalink
Fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
soareschen committed Nov 3, 2018
1 parent e610400 commit f0d1b04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webrtc/RTCDtlsTransport-getRemoteCertificates.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@

for(const cert of certs) {
assert_true(cert instanceof ArrayBuffer,
'Expect certificate elements be instance of ArrayBuffer');
'Certificates should be represented as ArrayBuffers');
}
}

function validateConnectingDtlsTransport(dtlsTransport) {
if (dtlsTransport.state !== 'connected') {
assert_array_equals(dtlsTransport.getCertificates(), [],
'Expect DTLS certificates be initially empty until become connected');
'The DTLS certificate list should be empty before the transport is connected');
}
}

Expand Down

0 comments on commit f0d1b04

Please sign in to comment.