Skip to content

Commit

Permalink
words
Browse files Browse the repository at this point in the history
  • Loading branch information
timostamm committed Apr 25, 2024
1 parent 0bd25d8 commit 2b4e9b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/protobuf/src/reflect/reflect-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export interface ReflectMessage {
* ReflectList provides dynamic access and manipulation of a list field on a
* message.
*
* ReflectList is iterable - you can loop throw all items with a for...of loop.
* ReflectList is iterable - you can loop through all items with a for...of loop.
*
* Values are converted or wrapped to make it easier to manipulate them:
* - Scalar 64-bit integer fields with the option `jstype=JS_STRING` are
Expand Down Expand Up @@ -230,7 +230,7 @@ export interface ReflectList<V = unknown> extends Iterable<V> {
* ReflectMap provides dynamic access and manipulation of a map field on a
* message.
*
* ReflectMap is iterable - you can loop throw all entries with a for...of loop.
* ReflectMap is iterable - you can loop through all entries with a for...of loop.
*
* Keys and values are converted or wrapped to make it easier to manipulate them:
* - A map field is a record object on a message, where keys are always strings.
Expand Down

0 comments on commit 2b4e9b9

Please sign in to comment.