Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] - code comments errors #568

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion contracts/test/tokenBridge/TokenBridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe("TokenBridge", function () {
}

describe("initialize", async function () {
it("Should revert if it has already been intialized", async function () {
it("Should revert if it has already been initialized", async function () {
const { user, l1TokenBridge, chainIds } = await loadFixture(deployContractsFixture);
await expectRevertWithReason(
l1TokenBridge.connect(user).initialize({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface GoNativeBlobCompressor {
*
* @param dataLimit Size limit for compressed data in bytes
* @param dictPath Path to the compression dictionary
* @return returns true if the compressor was successfully intialized else false
* @return returns true if the compressor was successfully initialized else false
*/
fun Init(dataLimit: Int, dictPath: String): Boolean

Expand Down