Skip to content

Commit

Permalink
fix minor typos (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
yjshi2015 authored Jul 2, 2024
1 parent 84b29e1 commit 91886d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion book/src/programmability/dynamic-object-fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ wrapped_ into a separate object.

## Pricing Differences

Dynamic Object Fields come a little more exensive than dynamic fields. Because of their internal
Dynamic Object Fields come a little more expensive than dynamic fields. Because of their internal
structure, they require 2 objects: the Wrapper for Name and the Value. Because of this, the cost of
adding and accessing object fields (loading 2 objects compared to 1 for dynamic fields) is higher.

Expand Down
2 changes: 1 addition & 1 deletion reference/src/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ In addition to `public` functions, you might have some functions in your modules
use as the entry point to execution. The `entry` modifier is designed to allow module functions to
initiate execution, without having to expose the functionality to other modules.

Essentially, the combination of `pbulic` and `entry` functions define the "main" functions of a
Essentially, the combination of `public` and `entry` functions define the "main" functions of a
module, and they specify where Move programs can start executing.

Keep in mind though, an `entry` function _can_ still be called by other Move functions. So while
Expand Down

0 comments on commit 91886d6

Please sign in to comment.