Merge pull request #16752 from overleaf/jpa-format-fix

[terraform] cloud-build: add missing triggers for libraries

GitOrigin-RevId: 3047b85550f9c2e51460509b9c1df7c414b901eb
This commit is contained in:
Jakob Ackermann
2024-01-29 09:04:05 +00:00
committed by Copybot
parent faa9109002
commit a3dc24a46e
3 changed files with 23 additions and 9 deletions
@@ -1,7 +1,7 @@
class Range {
/**
* @param {number} pos
* @param {number} length
* @param {number} pos
* @param {number} length
*/
constructor(pos, length) {
this.pos = pos
@@ -11,7 +11,7 @@ class Range {
toRaw() {
return {
pos: this.pos,
length: this.length
length: this.length,
}
}