Update numerous package declaration names

This commit is contained in:
gingerBill
2024-04-18 12:17:39 +01:00
parent f84a092977
commit 334e08c750
33 changed files with 33 additions and 33 deletions
+1 -1
View File
@@ -25,4 +25,4 @@
```
*/
package varint
package encoding_varint
+1 -1
View File
@@ -8,7 +8,7 @@
// package varint implements variable length integer encoding and decoding using
// the LEB128 format as used by DWARF debug info, Android .dex and other file formats.
package varint
package encoding_varint
// In theory we should use the bigint package. In practice, varints bigger than this indicate a corrupted file.
// Instead we'll set limits on the values we'll encode/decode