Skip to content

Commit

Permalink
Merge pull request #18 from Nuvindu/main
Browse files Browse the repository at this point in the history
Fix a typo in docs
  • Loading branch information
Nuvindu authored May 15, 2024
2 parents 1913304 + 5d38dea commit f3341a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import ballerina/avro;
public function main() returns error? {
int value = 5;
byte[] serializeData = check schema.toAvro(value);
byte[] serializedData = check schema.toAvro(value);
}
```

Expand All @@ -48,7 +48,7 @@ import ballerina/avro;
public function main() returns error? {
byte[] data = // Avro encoded message ;
int deserializeData = check schema.fromAvro(data);
int deserializedData = check schema.fromAvro(data);
}
```

Expand Down
4 changes: 2 additions & 2 deletions ballerina/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import ballerina/avro;
public function main() returns error? {
int value = 5;
byte[] serializeData = check schema.toAvro(value);
byte[] serializedData = check schema.toAvro(value);
}
```

Expand All @@ -41,6 +41,6 @@ import ballerina/avro;
public function main() returns error? {
byte[] data = // Avro encoded message ;
int deserializeData = check schema.fromAvro(data);
int deserializedData = check schema.fromAvro(data);
}
```
4 changes: 2 additions & 2 deletions ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import ballerina/avro;
public function main() returns error? {
int value = 5;
byte[] serializeData = check schema.toAvro(value);
byte[] serializedData = check schema.toAvro(value);
}
```

Expand All @@ -41,6 +41,6 @@ import ballerina/avro;
public function main() returns error? {
byte[] data = // Avro encoded message ;
int deserializeData = check schema.fromAvro(data);
int deserializedData = check schema.fromAvro(data);
}
```

0 comments on commit f3341a0

Please sign in to comment.