Skip to content

Commit

Permalink
Merge pull request #109 from onflow/supun/interface-removal-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent authored May 31, 2024
2 parents 01d5580 + 28a72c0 commit 7bb193a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/language/contract-updatability.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ A field may belong to a contract, struct, resource, or interface.
pub struct Foo {
}
```
This is because if there was a container of type `T` (i.e: an array `[T]` or dictionary `{R:T}`, etc.),
and if a `Foo` value had been stored in that container, then that container value will become invalid,
This is because if there was a container of type `T` (e.g., an array `[T]` or dictionary `{R:T}`, etc.), or a field of type `T`,
and if a `Foo` value had been stored in that container or field, then that container value will become invalid,
as it will now hold a value that does not conform to `T`.

### Updating Members
Expand Down

0 comments on commit 7bb193a

Please sign in to comment.